@font-face {
    font-family: Nunito-Bold;
    src: url(../fonts/Nunito/static/Nunito-Bold.ttf);
}
@font-face {
    font-family: Nunito-Medium;
    src: url(../fonts/Nunito/static/Nunito-Medium.ttf);
}
body{
     display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Signup Container */
.signup-container, .update-container{
    height: auto;
    width: 100%;
    max-width: 450px;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgb(200, 200, 200);
  
}
.profile_img_box{
    background-color: rgb(133, 133, 133, 0.15);
    padding: 10px !important;
    border-radius: 10px;
}

.profile_img{
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}
/* Signup Form */
.signup-form {
    padding: 20px;
}

.signup-header ,.update-header{
    text-align: center;
    margin-bottom: 20px;
}

.signup-header h1 ,.update-header h1{
    color: #2d3436;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    font-family: Nunito-Bold ;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}


/* Form Groups */
.form-group {
    padding: 10px 0;
    position: relative;
    border: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3436;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: Nunito-Bold;
}

.form-group .input-with-icon {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 10px 45px;
    border: 2px solid #dfe6e9;
    border-radius: 12px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #2d3436;
    font-family: Nunito-Medium;
 
}
.form-group select {
    border: 1px solid rgba(128, 128, 128, 0.1);
    border-radius: 20px;
    width: 50%;
    padding: 10px 45px;
    outline: none;
    font-family: Nunito-Medium;
}

.form-group input:focus {
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 1px rgba(63, 63, 63, 0.1);
}

.form-group .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #636e72;
    font-size: 1.1rem;
    z-index: 1;
}

/* error UI*/
.form-group .error{
    
    border-radius: 20px;
    width: 100%;
    padding: 10px;
    color: red;
    font-size: 0.8rem;
    font-family: Nunito-Medium;
    margin: 0;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #636e72;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 2;
    padding: 5px;
}

/* Terms & Conditions */
.terms-group {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Nunito-Medium;
    font-size: 0.8rem;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #11998e;
}

.terms-checkbox label {
    color: #5d5d5da9;
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 400;
}

.terms-checkbox a {
    color: #006aff;
    text-decoration: none;
    font-weight: 600;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 70%;
    padding: 10px;
    display: block;
    margin: 10px auto;
    background-color: rgb(0, 128, 255);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: Nunito-Medium;
}


.submit-btn:active {
    transform: translateY(0);
}


/* Login Section */
.login-section {
    text-align: center;
    border-top: 1px solid #dfe6e9;
}

.login-section p {
    color: #5d5d5d;
    font-size: 0.9rem;
    display: inline;
    font-family: Nunito-Medium;
}

.login-link {
    color: #006aff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 8px;
    display: inline-block;
    font-family: Nunito-Bold;
}

.login-link:hover {
    text-decoration: underline;
}

