body {
   font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #eaf3fb, #d7e9f7);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


/* START LOGIN CSS */


.login-container {
    width: 400px;
    height: 350px;
    margin: 120px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.login-email{

    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;

}

.login-pass{

    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;

}





.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: black;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0px 5px 0px;
}


/* 
.login-btn:hover {
    background: white;
    border: 1px;
    border-width: 1px;
    border-color: black;
   color: black;
    border: 2px solid #333;
}

*/


/* END LOGIN CSS */


/* -------------------------------------------------------------/*


/* START SIGN UP CSS */

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 400px;
    position: relative;
}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}
label {
    font-weight: bold;
}
.phone-group {
    display: flex;
    gap: 5px;
}
.phone-group select {
    width: 35%;
}
.phone-group input {
    width: 65%;
}
.password-container {
    position: relative;
}
.password-container input {
    width: 100%;
    padding-right: 35px;
}
.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

a{
    text-decoration: none;
}


.signup-btn {
    width: 100%;
    background: white;
    color: black;
     border-radius: 5px;
    border: 2px solid black;
    cursor: pointer;
     padding: 12px;
      font-size: 16px;
    
}




/* Popup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #fff;
    padding: 30px;
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
}
.modal-content h3 {
    text-align: center;
    margin-bottom: 10px;
}
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #333;
    cursor: pointer;
}
.modal-content label {
    display: block;
    margin-bottom: 10px;
}



/* END SIGN UP CSS */


/* -------------------------------------------------------------/*



