@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
*/ html {
    font-size: 18px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0058b3;
}

.body-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    background-color: #fff;
}
.body-left main {
    flex: 1;
    width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.body-left .logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#letter-a {
    color: #0058b3;
}
#letter-g {
    color: #0058b3;
}
.form-area {
    width: 100%;
}
.form-area form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-area form label input {
    width: 100%;
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    background-color: #e8f0fe;
    font-size: 0.8rem;
}
.form-area form label p {
    font-weight: 600;
}
#submit-button {
    width: 10rem;
    padding: 0.5rem 0;
    background-color: #1578e3;
    border-radius: 0.4rem;
    border: none;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: auto;
}
#submit-button:hover {
    background-color: #0058b3;
}

.blur {
    height: 100vh;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.7rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

footer a {
    font-size: 0.7rem;
    font-weight: 600;
    color: #000;
}
footer a:hover {
    color: #0058b3;
}
footer span {
    color: darkgray;
}

@media (max-width: 768px) {
    .body-right {
        display: none;
    }
}
@media (max-width: 425px) {
    h1 {
        font-size: 1.7rem;
    }
    .form-area form {
        justify-content: center;
        align-items: center;
    }
    .form-area form label input {
        width: 200px;
    }
    .body-left main {
        width: 100%;
    }
    #submit-button {
        margin-top: 10px;
    }
}
