body, html {
    margin: 0;
    padding: 0;
    font-family: 'Lexend Giga';
    background-color: #111;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
}

/* Login Container */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: 1920px;
    min-height: 600px; /* Ensures it doesn't shrink too much */
    height: 1080px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 90px;
    overflow: hidden;
}

/* Header */
header {
    position: relative;
    top: 70px;
    text-align: center;

}

.logo {
    height: 100px;
}

/* Form Content */
.form-content {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    top: 90px;
}

/* Columns */
.column {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.column input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 2px solid #444;
    background: transparent;
    color: #f5f5f5;
    font-size: 16px;
    font-family: 'Lexend Giga', sans-serif;
}

.column input::placeholder {
    font-family: 'Lexend Giga', sans-serif;
    color: #aaa;
}

.column input:focus {
    outline: none;
    border-bottom: 2px solid #ffffff;
}

/* Checkbox Group */
.checkbox-group {
    display: inline-block;
    gap: 8px;
    font-size: 14px;
    color: #f5f5f5;
}

.checkbox-group label {
    display: flex;
    align-items: center;

    margin-left: 10px;
    gap: 10px; 
}

.checkbox-group input {
    width: 20px; 
    margin-top: 12px;
    
    
}

input[type="radio"]{
    accent-color: #f4b800;
  }

  input[type="checkbox"]{
    accent-color: #f4b800;
  }

input[type="radio"]:hover {
    transform: scale(1.2);  
    transition: 0.5s ease;   
}

/* Hover effect for checkboxes */
input[type="checkbox"]:hover {
    transform: scale(1.2);  
    transition: 0.5s ease;   
}

.checkbox-group a {
    color: #f4b800;
    text-decoration: none;
}

/* Gender Group */
.gender-group label {
    display: inline-flex;
    align-items: center;
}

.gender-group {
    display: inline;
    align-items: left;
    margin-bottom: 20px;
    color: #f5f5f5;
}

.gender-group input{
    width: 20px;
}

/* Buttons */
.back-button {
    width: 50px;
    height: auto;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    cursor: pointer;
  
  
}
.register-button {
    width: 150px;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-style: 'Lexend Giga',  sans-serif;
    display: inline;
    background-color: #f4b800;
    color: #111;
}

.button{
    justify-content: center;
    align-items: left;
}

.back-button i{
    color: white;
    size:2vh;
}

.back-button i:hover {
    display: inline-block;
    color:  #f4b800;
    transition: 0.3s;
}

.click-here:hover {
    color: white;
    transition: 0.3s;
}

.register-button:hover {
    background-color: white;
}

button{
    font-family: 'Lexend Giga';
}

/* Login Options */
.login-options {
    text-align: center;
    margin-top: 20px;
}

.login-options a {
    color: #f4b800;
    text-decoration: none;
    font-weight: bold;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
.social-login img:hover {
    transform: scale(1.1); 
    opacity: 0.8; 
    background-color: #fff6f6;
    border-radius: 8px;
    transition: 0.3s;
}

.social-login img {
    height: 40px;
    cursor: pointer;
}




/*Terms and Conditions*/
/* Modal styles */
#floatingPage {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* Modal content */
#floatingPage .modal-content {
    background-color: #1e1e1e; 
    color: white; 
    padding: 20px;
    height: 80%; 
    max-height: 80%;
    border-radius: 8px;
    width: 80%;
    max-width: 1020px;
    text-align: left; 
    display: flex;
    flex-direction: column;
    overflow-y: auto; 
}

/* Image inside modal */
#floatingPage .modal-content img {
    width: 250px;
    margin: 0 auto; 
    display: block;
    margin-bottom: 20px; 
}

/* Close button section */
#floatingPage .modal-content .closebutton {
    display: flex;
    justify-content: right;
    width: 100%;
    margin-top: 20px;
}

/* Close button styling */
#floatingPage .modal-content .close-button {
    background-color: #f4b800;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

#floatingPage .modal-content .close-button:hover {
   background-color: white;
   transition: 0.3s;
}


/* Links styling */
#floatingPage .modal-content a {
    color: #f4b800;
}

/*Privacy Policy*/
#privacyPolicyPage {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#privacyPolicyPage .modal-content {
    background-color: #1e1e1e; 
    color: white; 
    padding: 20px;
    height: 80%; 
    max-height: 80%; 
    border-radius: 8px;
    width: 80%;
    max-width: 1020px;
    text-align: left;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

#privacyPolicyPage .modal-content img {
    width: 250px;
    margin: 0 auto; 
    display: block;
    margin-bottom: 20px; 
}

#privacyPolicyPage .modal-content .closeprivacybutton {
    display: flex;
    justify-content: right;
    width: 100%;
    margin-top: 20px;
}


/* Close button styling */
#privacyPolicyPage .modal-content .close-button {
    background-color: #f4b800;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

#privacyPolicyPage .modal-content .close-button:hover {
    background-color: white;
    transition: 0.3s;
 }
 
/* Links styling */
#privacyPolicyPage .modal-content a {
    color: #f4b800;
}



.password, .confirm-password {
    position: relative;

}

/* Adjust icon placement */
.eye-icon-1{
    position: absolute;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.eye-icon-2{
    position: absolute;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}


