/* General Styles */
body, html {
    
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-image:url("/assets/img/denim-pattern.png");
}

.login-box {
    background-color: #000;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 0, 234, 0.5);
    padding: 20px;
    width: 400px;
}

.input-box {
    position: relative;
    margin: 25px 0;
}

.input-box input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: 2px solid #1f293a;
    border-radius: 40px;
    font-size: 1em;
    color: #fff;
    padding: 0 20px;
    transition: .5s ease;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #fff;
    pointer-events: none;
    transition: .5s ease;
}

.input-box input:focus,
.input-box input:valid {
    border-color: rgb(253, 173, 0);
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
    top: -10px;
    font-size: .8em;
    background: #000;
    padding: 0 6px;
    color: rgb(253, 173, 0);
}

.btn_login {
    width: 100%;
    height: 45px;
    background: rgb(253, 173, 0);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1.5em;
    color: #000;
    font-weight: 600;
    transition: .5s ease;
}

.btn_login:hover {
    background: #fff;
    color: #000;
}
.forgot-link{
    text-align: center;
    color: #fff;
    padding-top: 10px;
    font-size: .9em;
}
.forgot-link a{
    color: rgb(249, 233, 128);
    text-decoration: none;
    font-weight: 600;
}
.forgot-link a:hover {
    text-decoration: underline;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
        color: rgb(255, 255, 255);
        
    }

}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
