body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}
.request_password_body{
    height: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 130px;
}
.request_password_body.check-email{
    justify-content: center;
}
.separation{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-block: 40px;
}
.separation::before{
    content: "";
    border-bottom: solid 1px var(--black);
    width: 100%;
}
.separation::after{
    content: "";
    border-bottom: solid 1px var(--black);
    width: 100%;
}
img{
    margin-bottom: 40px;
}
h1{
    font-family: 'Krona One';
    font-size: 25px;
    font-weight: normal;
    width: 50%;
    text-align: center;
    margin-bottom: 60px;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    margin-bottom: 60px;
}
.input{
    width: 100%;
}
.btn-primary{
    min-width: 10vw;
    background-color: var(--orange);
    color: var(--black);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    padding: 13px;
    text-align: center;
    font-size: 22px;
    cursor: pointer;
    transition: .3s;
}
.btn-primary:hover{
    transform: translateY(-5px);
}
a{
    color: var(--orange);
    font-size: 24px;
    font-weight: bold;
    transition: .3s;
}
a:hover{
    color: var(--black);
}
.alert{
    position: absolute;
    bottom: 100px;
    color: red;
    font-size: 20px;
    font-weight: bold;
    width: 30%;
    text-align: center;
}

.check-email p{
    font-size: 22px;
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
}
@media (max-width: 1440px) { 
    .separation{
        width: 50%;
        gap: 20px;
    }
    form{
        width: 35%;
    }
    .btn-primary{
        min-width: 15vw;
    }
    .alert{
        width: 70%;
    }
}
@media (max-width: 1024px) { 
    form{
        width: 50%;
    }
    .btn-primary{
        min-width: 25vw;
    }
    a{
        font-size: 20px;
    }
    .check-email p{
        width: 70%;
    }
}
@media (max-width: 768px) { 
    .separation{
        width: 70%;
        gap: 20px;
    }
    .btn-primary{
        min-width: 30vw;
        font-size: 20px;
    }
    h1{
        width: 75%;
    }
    a{
        font-size: 18px;
    }
    .alert{
        bottom: 25px;
        width: 90%;
    }
    .check-email p{
        font-size: 18px;
        width: 70%;
        margin-bottom: 30px;
    }
}
@media (max-width: 600px) { 
    .separation{
        width: 90%;
        gap: 25px;
    }
    img{
        width: 70vw;
    }
    h1{
        width: 85%;
        font-size: 20px;
    }
    .btn-primary{
        font-size: 18px;
    }
}
@media (max-width: 425px) { 
    form{
        width: 70%;
    }
}