*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.background-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.background-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper{
    position: relative;
    width: 750px;
    height: 500px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    border: 1px solid aqua;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.wrapper .info-text,
.wrapper .form-box {
    width: 100%;
    height: 100%;
}


.wrapper .info-text.login {
    background: #0d9488;
    border-radius: 6px 0 0 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}


.show-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    text-align: center;
    background-color: transparent;
}

.input-box .email-icon {
    position: absolute;
    right: 5px;
    bottom: 8px;
    cursor: pointer;
    color: #fff;
    display : flex;
    padding-right: 10px;
    font-weight: 500px;
}

.input-box .password-icon i{
    position: absolute;
    right: 5px;
    bottom: 8px;
    cursor: pointer;
    color: #fff;
    display : flex;
    padding-right: 10px;
    font-weight: 500px;
}
.logo-box {
    align-content: center;
    width: 100%;
    height: 200px;
}
.logo-box a {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease;
}
.logo-box a:hover {
    transform: scale(1.05); 
}
.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-bottom: 20px;
}

#welcome-text h2 {
    font-size: 28px; 
    color: rgb(2, 22, 22);
    line-height: 1.3;
    font-weight: 800;
}
#welcome-text .highlight{
    color: #E3C376;
    font-size: 15px;
    font-weight: 100px;
}

/* Right Side Form Box Setup */
.wrapper .form-box.login{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
}
.form-box h2{
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
}
.form-box .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin-top: 20px;
}
.input-box input{
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    padding-left: 10px; /* Added left spacing for typed text */
    padding-right: 30px; /* Space for the right-side icons */
    color: #fff;
    border-bottom: 2px solid #fff;
    font-weight: 400;
    transition: .5s;
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 10px; /* Aligns label with the 10px input padding */
    color: #fff;
    font-size: 16px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: .3s ease;
}
.input-box input:focus ~ label,
.input-box input:valid ~ label{
    top: -5px;
    color: aqua;
    font-size: 14px;
}

/* submit button */
.Submit-btn{
    width: 100%;
    height: 45px;
    background-color: rgb(2, 22, 22);
    border: 2px solid aqua;
    cursor: pointer;
    font-size: 18px;
    margin-top: 30px;
    position: relative;
    outline: none;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
}
.Submit-btn::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, aqua, rgb(2, 22, 22), aqua);
    z-index: -1;
    transition: .5s;
}
.form-box .login-register{
    position: relative;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}
.login-register p a{
    color: aqua;
    text-decoration: none;
    font-weight: 600;
}
.login-register p a:hover{
    text-decoration: underline;
}

.forgot-password {
  display: inline-block;
  color: #4f46e5; /* Modern indigo accent */
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  margin-top: 5%;
  padding-left: 10%;
}

.forgot-password:hover {
  color: #3730a3; 
  text-decoration: underline;
}

.forgot-password:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-radius: 2px;
}