* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Almarai", sans-serif;
}

button {
    cursor: pointer;
}

.body-login {
    height: 100vh;
    width: 100vw;
    background-color: #f47820;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-login {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    height: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-container {
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 9%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.form-container h1 {
    color: #32363b;
    font-size: 28px;
    line-height: 1;
}

.form-container > span {
    color: #cccccc;
    font-size: 16px;
}

.form-container > form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-image-container {
    background-image: url("./assets/image2.jpg");
    background-position: center;
    width: 100%;
    height: 100%;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 15%;
    line-height: 2;
    font-size: 35px;
    font-weight: 700;
}

.submit-button {
    background-color: #f47820;
    color: #ffffff;
    box-shadow: 0px 4px 8px 0px #0000001a;
}

.confirmation-container {
    align-items: center;
    padding: 10%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 90%;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .main-login {
        grid-template-columns: 1fr;
    }

    .form-container {
        width: 100%;
        align-items: center;
    }

    .form-image-container {
        justify-content: center;
        align-items: center;
    }

    .form-image-container {
        display: none;
    }

    .confirmation-container {
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 500px) {
    .form-container h1 {
        font-size: 22px;
        text-align: center;
    }

    .form-container > span {
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 400px) {
    .form-container h1 {
        font-size: 20px;
        text-align: center;
    }

    .main-login {
        width: 90%;
    }
}

.input-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-box label {
    font-size: 16px;
    color: #000;
}

.input-box select,
.input-box input {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e5f2;
    width: 100%;
}

.flex {
    display: flex;
}

.flex-d-c {
    flex-direction: column;
}

.flex-d-r {
    flex-direction: row;
}

.justify-content-space-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.remember-me-box {
    display: flex;
    gap: 10px;
    color: #7a86a1;
}

.forgot-password-link {
    font-size: 16px;
    color: #32363b;
    text-decoration: none;
}

.big-button {
    width: 100%;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    border: 0;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
}

.google-button {
    background-color: #e6f8e7;
    color: #275e2c;
}

.code-input-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.code-input-box input {
    width: 100%;
    border-radius: 10px;
    height: 55px;
    border: 1px solid #e0e5f2;
}

.transparent-button {
    border: 0;
    background-color: transparent;
}

.app-logo-login {
    height: 40px;
    align-self: center;
}

.main-login {
    border-radius: 10px;
    overflow: hidden;
}
