body {
    background: linear-gradient(to right, #4183FB, #70FBAD);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}
.login-parent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    align-items: stretch;
    overflow: hidden;
    padding: 10px;
}
.title-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin: 10px;
    padding: 10px;
    color: white;
}
.login-title {
    font-size: xxx-large;
    font-weight: 600;
    border-bottom: 2px solid white;
}
.slogan {
    font-size: x-large;
}
.welcome-container {
    flex: 1;
    width: calc(100% - 40px);
    max-width: 440px;
    min-width: 320px;
    min-height: 338px;
    /* height: calc(100% + 20px); */
    overflow: hidden;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0A1258;
    color: white;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(to top, #05092D, #0A1258);
}
.welcome-msg {
    font-size: x-large;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid white;
    margin-bottom: 5px;
}
.login-logo {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 60%;
    z-index: -1;
    filter: blur(2px);
    -webkit-filter: blur(2.4px);
}
.login {
    flex: 1;
    width: calc(100% - 40px);
    max-width: 440px;
    min-width: 320px;
    min-height: 338px;
    /* height: calc(100% + 20px); */
    overflow: hidden;
    padding: 44px;
    background-color: #fff;
    border: 2px solid #0A1258;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.request-button,
.continue-button,
.return-button,
.login-button {
    padding: 12.5px 15px;
    background-color: #0A1258;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: medium;
}
.request-button:hover,
.continue-button:hover,
.return-button:hover,
.login-button:hover {
    background-image: linear-gradient(to top, #4280FC, #40E0D0);
    cursor: pointer;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}
#password_reset {
    width: 100%;
}
form {
    position: relative;
    margin-top: 16px;
    height: calc(100% - 55px);
}
form input[type="text"], 
input[type="password"] {
    margin-bottom: 16px !important;
}
form a {
    color: #0067b8;
}
form a:hover {
    cursor: pointer;
    text-decoration: underline;
}
/* .login div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
} */
#submit-container {
    all: unset;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .login-parent {
        flex-direction: column;
        align-items: center;
        transition: 0.3s;
    }
    .login-title {
        font-size: xx-large;
    }
    .slogan {
        font-size: large;
    }
    .welcome-container {
        display: none;
        /* border-bottom-left-radius: 0px;
        border-top-right-radius: 10px; */
    }
    .login {
        border-radius: 10px;
    }
    .login-button {
        width: 100%;
    }
}