body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f2edf7 !important;
}

.login-wrapper {
    width: 1000px;
    height: auto;
    display: grid;
    grid-template-columns: 2fr 2fr;
    box-shadow: 0 0 20px rgba(149, 116, 220, 0.35);
    border-radius: 15px;
}

.login-wrapper img {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.login-section {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.login-form h1 {
    font-size: 22px;
    font-weight: bolder;
}

.login-form input {
    background-color: rgb(224, 224, 224);
}

.login-form input:focus {
    background-color: rgb(224, 224, 224);
}

.login-form .login-button {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    color: white;
    background-color: #70287e;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;

    transition: background-color 0.25s ease, box-shadow 0.25s ease,
        transform 0.2s ease;
}

.login-form .login-button:hover {
    background-color: #85359a;
    box-shadow: 0 10px 25px rgba(112, 40, 126, 0.45);
    transform: translateY(-2px);
}
