@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    padding: 0;
    margin: 0;
    background: #084e83;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.forget-password {
    width: 35%;
    height: auto;
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.forget-password img {
    width: 150px;
    height: auto;
}

.forget-password h1 {
    margin-top: 0;
    margin-bottom: 10px;
}
.input-email {
    margin-top: 0px;
    margin-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
}

.remember-pass {
    margin-top: 30px;
    margin-bottom: 0;
}

.forget-password input {
    width: 98%;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 0;
    font-size: medium;
}

.input-forget {
    padding-left: 30px;
    padding-right: 30px;
}

.input-forget h3 {
    text-align: start;
    margin-bottom: 10px;
}

.forget-password button {
    width: 100%;
    height: 60px;
    font-size: 20px;
    background-color: #0b61a2;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.forget-password button:hover {
    background-color: #084e83;
}

@media (max-width: 1024px) {
    .forget-password {
        width: 50%;
        padding: 30px;
    }

    .forget-password img {
        width: 180px;
    }

    .forget-password h1 {
        font-size: 26px;
    }

    .forget-password input {
        font-size: 20px;
        height: 55px;
    }

    .forget-password button {
        font-size: 20px;
        height: 55px;
    }
}

@media (max-width: 425px) {
    .forget-password {
        width: 95%;
        padding: 40px;
    }

    .forget-password img {
        width: 180px;
    }

    .forget-password h1 {
        font-size: 32px;
    }

    .forget-password p {
        font-size: 22px;
    }

    .forget-password input {
        font-size: 22px;
        height: 65px;
    }

    .forget-password button {
        font-size: 22px;
        height: 65px;
    }
}
