@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@media only screen and (max-width: 600px) {
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 20px 100px;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 40px;
    color: white;
}

header nav {
    display: flex;
    gap: 30px;
}

header nav a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 99px;
    transition: 0.3s;
    color: white;
}

header nav a.active {
    background: #5247B9;
}

header nav a:hover {
    background: #5247B9;
}

header nav:hover > a:not(:hover) {
    background: none;
}

.back {
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

.wrapper {
    position: relative;
    width: 1500px;
    height: 4px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    width: 300px;
    margin: auto; 
    margin-top: 250px; 
    background-color: rgba(255, 255, 255, 0.3); 
    border-radius: 10px;
}

.form-box {
    width: 300px;
    margin: auto;
    margin-top: 250px;
}

.form-box h2 {
    font-size: 2em;
    color: rgba(1, 94, 106, 0.841);
    text-align: center;
}

.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    padding: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    margin: 30px 0;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #162938;
    font-weight: 500;
    pointer-events: none;
    transition: 0.5s;
    z-index: 1; 
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
    top: -15px; 
    font-size: 0.8em; 
    color: #5247B9;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    font-size: 1em;
    color: black;
    font-weight: bold;
    border: none;
    outline: none;
}

.input-box .icon {
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: #162938;
    line-height: 57px;
    cursor: pointer;
}

.input-box .icon:hover {
    color: #5247B9;
}

.remember-forget {
    font-size: .9em;
    color: black;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forget label input {
    accent-color: black;
    margin-right: 3px;
}

.remember-forget a {
    text-decoration: none;
    color: black;
}
.remember-forget a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    height: 45px;
    background: rgba(1, 94, 106, 0.841);
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: rgb(255, 255, 255);
    font-weight: 500;
    margin-bottom: 25px;
}

.login-register p {
    padding-left: 20px;
}
.login-register p a{
    color: #5247B9;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.login-register p a:hover{
    text-decoration: underline;
}

.back {
    position: fixed;
    width: fill-content;
    height: fill-content;
}