/* auth.css with Ultra Transparent Glass */
body {
    height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f3f4f6, #e0dede);
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MAXIMUM TRANSPARENT GLASS CARD */
.auth-box {
    background: rgba(255, 255, 255, 0.686); /* deyarli shaffof */
    backdrop-filter: blur(25px);            /* kuchli blur */
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(186, 181, 181, 0.753); /* juda yumshoq border */
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);   /* super yumshoq soyalar */
}

/* Profile upload */
.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: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
}
.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;
}

/* Inputs */
.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 rgba(255,255,255,0.1); 
    border-radius: 10px; 
    background: rgba(255,255,255,0.05); 
    backdrop-filter: blur(10px);
    color: #131118;
}

/* Button */
.btn-primary-krist{
    padding: 10px 30px;
    background: rgba(212,163,115,0.8);
    color: white;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary-krist:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
