/* auth.css */
.auth-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
}
.auth-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.profile-upload {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    cursor: pointer;
}
#profilePreview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}
.upload-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: black;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-group { text-align: left; margin-bottom: 15px; }
.input-group label { display: block; font-size: 14px; margin-bottom: 5px; font-weight: 600; }
.input-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 10px; }
