/* POPPINS FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans',sans-serif;
}
body{
    /* background: url("../loginBG.jpg");  */
	/* background-color:rgba(255, 255, 255, 0.15);  Semi-transparent  */
    background-color: rgba(109, 76, 242, 0.2);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    /* overflow: hidden; */
}
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
   /*  background: rgba(39, 39, 39, 0.4); */
}

.nav-logo p{
    color: white;
    font-size: 25px;
    font-weight: 600;
}

.link:hover, .active{
    border-bottom: 2px solid #fff;
}

.btn:hover{
    background: rgba(255, 255, 255, 0.3);
}
#registerBtn{
    margin-left: 15px;
}
.btn.white-btn{
    background: rgba(255, 255, 255, 0.7);
}
.btn.btn.white-btn:hover{
    background: rgba(255, 255, 255, 0.5);
}

.form-box{
    position: relative;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    width: 512px;
    height: 600px;
    overflow: hidden;
    z-index: 2;
    padding: 30px;
    /* border-radius: 15px; */
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent */
    background-color:    #fff;   /*  #6D4CF2; */
    backdrop-filter: blur(10px); /* Glass Effect */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Soft Shadow */   
    animation: fadeIn 0.8s ease-in-out;
}

/* Form Container - Glassmorphism Effect */
.form-container {
    width: 400px;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent */
    backdrop-filter: blur(10px); /* Glass Effect */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Soft Shadow */
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}
.login-container{
    position: absolute;
    left: 4px;
    width: 500px;
    display: flex;
    flex-direction: column;
    transition: .5s ease-in-out;
}
.register-container{
    position: absolute;
    right: -520px;
    width: 500px;
    display: flex;
    flex-direction: column;
    transition: .5s ease-in-out;
}

.top span{
    color: #333;
    font-size: 18px;
    padding: 12px 0;
    display: flex;
    justify-content: center;
}
.top span a{
    font-weight: 500;
    color: #333;
    margin-left: 8px;
}
header{
    color: #333;
    font-size: 30px;
    text-align: center;
    padding: 10px 0 30px 0;
}
.two-forms{
    display: flex;
    gap: 10px;
}
.input-field {
    font-size: 15px;
    background: rgba(109, 76, 242, 0.2);  /* rgba(255, 255, 255, 0.2);  */ 
    color: #333;   
    height: 50px;
    width: 100%;
    padding: 0 10px 0 45px;
    border: none;
    border-radius: 30px;
    outline: none;
    transition: .2s ease;
}
.input-field:hover, .input-field:focus{
    background: rgba(109, 76, 242, 0.2);  /* rgba(255, 255, 255, 0.25); */
}
::-webkit-input-placeholder{
    color: #333;
}
.input-box i{
    position: relative;
    top: -35px;
    left: 17px;
    color: #333
}
.submit{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    height: 45px;
    width: 100%;
    border: none;
    border-radius: 30px;
    outline: none;
    background: #896bff;  /* rgba(255, 255, 255, 0.7); */
    cursor: pointer;
    transition: .3s ease-in-out;
}
.submit:hover{
    background: #896bff;  /* rgba(255, 255, 255, 0.5); */
    box-shadow: 1px 5px 7px 1px rgba(0, 0, 0, 0.2);
}
.two-col{
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: small;
    margin-top: 10px;
}
.two-col .one{
    display: flex;
    gap: 5px;
}
.two label a{
    text-decoration: none;
    color: #fff;
}
.two label a:hover{
    text-decoration: underline;
}
.dropdown-field {
    font-size: 14px;
    background: rgba(109, 76, 242, 0.2);  /* rgba(255, 255, 255, 0.2); */
    color: #333; /* Black text color */
    height: 50px;
    width: 100%;
    /*padding: 0 10px 0 45px;*/
    border: none;
    border-radius: 30px;
    outline: none;
    transition: .2s ease;
    justify-content: center;
    align-items: center;
}

.dropdown-field option {
    color: #333; /* Set the default option text color to black */
}

/* Set the color of the "Role" option to white */
.dropdown-field option[value=""] {
    color: #fff; /* Set the "Role" option text color to white */
}

.dropdown-field:hover, .dropdown-field:focus {
    background: rgba(109, 76, 242, 0.2);  /*rgba(255, 255, 255, 0.25); */
}

/* Styling for the dropdown arrow */
.input-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background: transparent; */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="18px" height="18px"><path d="M7 10l5 5 5-5z"></path></svg>');
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
    background-size: 16px;
    padding-right: 10px;
    color: #333; 
}

.input-box select option {background: rgba(109, 76, 242, 0.2); color:#333;}

.input-box select option[value=""] {
    color: #333; /* Set the "Role" option text color to white */
}

 /* Overlay background */
 #disclaimerOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  /* Popup box */
  #disclaimerBox {
    background: #fff;
    padding: 20px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  #disclaimerBox h3 {
    margin-top: 0;
    color: #c00;
    margin-bottom: 8px;
  }
  #disclaimerBox p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #disclaimerBox .btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
  }
  #agreeBtn {
    background: #007bff;
    color: #fff;
    margin-right: 10px;
  }
  #declineBtn {
    background: #ccc;
    color: #000;
  }



@media only screen and (max-width: 540px) {
    .wrapper{
        min-height: 100vh;
    }
    .form-box{
        width: 100%;
        height: 700px;
    }
    .register-container, .login-container, .resetpassword-container{
        width: 100%;
        padding: 0 20px;
    }
    .register-container .two-forms{
        flex-direction: column;
        gap: 0;
    }
}