.container{
    width: 100%;
    height: 100vh;
    background: var(--gradient-bg), url(images/Drill.jpeg);
    background-position: top;
    background-size: cover;
    position: relative;
}

.form-box{
    width: 90%;
    height: 85vh;
    max-height: 550px;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    border-radius: 6px;
    padding: 40px 50px 60px;
    text-align: center;
}

.form-box h1{
    font-size: 30px;
    margin-bottom: 30px;
    color: var(--secondary);
    position: relative;
}

.input-field{
    background: var(--secondary);
    margin: 10px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    max-height: 65px;
    transition: max-height 0.5s;
    overflow: hidden;
}

input{
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px 15px;
}

.input-field i{
    margin-left: 15px;
    color: var(--secondary);
}

form p{
    text-align: left;
    font-size: 13px;
}

form p a{
    text-decoration: none;
    color: var(--secondary);
    padding: 20px 0 20px 0;
}

.btn-field{
    width: 40%;
    position: relative;
    top: 20px;
    right: 10px;
    text-align: center;
    margin: 5px 5px 5px 5px;
}

.btn-field #signinBtn{
    background: var(--secondary);
    color: var(--primary);
    height: 40px;
    padding: 0 0 2px 0;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    text-align: center;
}

.btn-field #signinBtn:hover{
    background: var(--bg-secondary);
    transition: 0.5s;
    color: var(--secondary);
}

.input-group{
    height: 280px;
}

.isInvalid{
    color: #A94442;
    background: #f2a3a2;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.footer_container{
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 150px;
}

.footer_container h3{
    font-size: clamp(22px, 2vw, 2rem);
}

.footer_container p{
    font-size: clamp(12px, 1.5vw, 1.5rem);
}

.footer_container :is(h3, p){
    color: var(--secondary);
    text-align: center;
    line-height: 175%;
}

.footer-content{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px;
}

.footer-content a{
    text-decoration: none;
    color: var(--secondary);
    font-size: clamp(14px, 1.5vw, 1.5rem);
    text-align: center;
}

.footer-content a:hover{
    color: var(--bg-primary);
}

@media(max-width: 768px){
    .footer-content{
        justify-content: center;
        gap: 20px;
    }
}