body {
    background-color: #d9d7cd;
    height: 100vh;
}

.alert {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
}

.alert ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.alert ul li {
    color: #E03137;
}

.login-body {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
}

.left-side img {
    width: 25px;
    margin-bottom: 4rem;
}

.left-side h1 {
    padding: 0 20%;
    width: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
}

.left-side-p {
    padding: 0 20%;
    width: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
}

.no-acc {
    width: 100%;
    font-family: "Manrope", sans-serif;
    text-align: center;
}

.no-acc a {
    text-decoration: none;
    color: #146755;
}

form {
    padding: 0 20%;
    width: 100%;
}

.label {
    font-family: "Manrope", sans-serif;
}

.label span {
    font-family: "Manrope", sans-serif;
    color: #E03137;
}

.label-pass {
    margin-top: 1.5rem;
    font-family: "Manrope", sans-serif;
}

.label-pass span {
    font-family: "Manrope", sans-serif;
    color: #E03137;
}

.input-user {
    all: unset;
    font-family: "Manrope", sans-serif;
    color: black;
    padding: .7rem 1rem;
    border: 1px solid black;
    border-radius: 10px;
    width: calc(100% - 2rem);
}

.input-user {
    all: unset;
    font-family: "Manrope", sans-serif;
    color: black;
    padding: .7rem 1rem;
    border: 1px solid black;
    border-radius: 10px;
    width: calc(100% - 2rem);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-user:focus {
    border-color: #146755;
    box-shadow: 0 0 5px #146755;
}

.option-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
}

.option-wrapper p {
    font-family: "Manrope", sans-serif;
}

.login-btn {
    all: unset;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: white !important;
    background-color: #146755;
    padding: 1rem;
    width: calc(100% - 2rem);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

.login-btn:hover {
    background-color: #0f5748;
}

.right-side {
    flex: 1;
    height: 100vh;
    width: 100%;
    position: relative;
}

.right-side img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
    display: block;
}

.right-side::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
    background: linear-gradient(to bottom, rgba(20, 103, 85, 0.33), rgba(154, 43, 96, 0.61));
}

.back-home {
    width: 100%;
    font-family: "Manrope", sans-serif;
    text-align: center;
}

@media (min-width: 901px) {
    .back-home {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .back-home {
        display: block !important;
    }
    .back-home a {
        text-decoration: none;
        color: #146755;
    }
}

@media (max-width: 900px) {
    .right-side {
        display: none;
    }

    .option-wrapper p {
        font-family: "Manrope", sans-serif;
        font-size: .8rem;
    }

    .left-side h1 {
        font-size: 1.5rem;
    }

    .back-home {
        width: 100%;
        font-family: "Manrope", sans-serif;
        text-align: center;
    }

    .back-home a {
        text-decoration: none;
        color: #146755;
    }
}