.login_body{
    background-color: #EEF5FF;
}

.login_page{
    margin: 10px;
    height: 100vh;
    display: flex;
    align-items: center;
    border-style: solid;
    border-radius: 10px;
    border-width: 5px;
    background-color: #F9EFDB;
}

.left_column{
    margin: 10px;
    margin-right: 5px;
    height: 95%;
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    border-style: solid;
    border-radius: 10px;
    border-width: 3px;
    background-color: #FFEAA7;
}

.right_column{
    margin: 10px;
    margin-left: 5px;
    height: 95%;
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    border-style: solid;
    border-radius: 10px;
    border-width: 3px;
    background-color: #FFEAA7;
}

.center{
    top: 50%;
    left: 50%;
}

.welcome_section{
    margin: 30px;
}

.welcome_logo{
    width: 300px;
    height: 100px;
    margin: 10px;
}

.tutorial_section{
    margin: 20px;
}

.tutorial_text{
    font-weight: bold;
}

.carousel {
    height: 450px;
    margin: 10px;
    padding: 10px;
    border-style: solid;
    border-width: 3px;
    background-color: #FFEAA7;
}

.carousel-caption{
    position: relative;
    text-align: center;
    color: black;
}

.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-control-prev-icon {
    filter: invert(1);
}

.carousel-indicators [data-bs-target] {
    background-color: gray;
}
.carousel-indicators .active {
    background-color: black;
}

.login_section{
    margin: 10px;
}

.login_title{
    margin: 20px;
}

.flash{
    margin: 10px;
    color: red;
}

.error_section{
    margin: 10px;
}

.username_input{
    margin: 20px;
}
.username_inputbox{
    width: 25%;
    height: 30px;
    margin-bottom: 5px;
}
.username_inputbox[type="text"], textarea{
    border-radius: 5px;
    border-color: black;
    background-color: #F9EFDB;
}

.password_input{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin: 20px;
    margin-bottom: 15px;
}
.password_inputbox{
    width: 25%;
    height: 30px;
    margin-bottom: 5px;
}
.password_inputbox[type="password"], textarea{
    border-radius: 5px;
    border-color: black;
    background-color: #F9EFDB;
}
.password_inputbox[type="text"], textarea{
    border-radius: 5px;
    border-color: black;
    background-color: #F9EFDB;
}
.form-check-input{
    border-width: 2px;
    border-color: black;
    background-color: #F9EFDB;
}

.btn-login{
    margin:10px;
}

.login_note{
    margin: 10px;
}