
.login_page {
    background-color: #dae8fc;
    padding: 40px 15px;
    width: 100%;
}

.login_page .container {
    margin-bottom: 0 !important;
}

@media screen and (min-width: 1281px) {

    /* CSS for desktop 100% and above */
    .login_page {
        position: absolute;
        top: 48%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 1280px) {

    /* CSS for desktop and below */
    .login_section {
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        width: 100%;
        height: 100vh;
    }
}

.image-container {
    display: flex;
    justify-content: right;
    padding-right: 15px;
}

.image-container img {
    height: 350px;
    border-radius: 35px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

.welcome_title h3 {
    font-size: 20px;
    font-weight: normal;
}

.login_page_title h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.welcome_text {
    max-width: 550px;
}

.welcome_text p {
    font-size: 16px;
    font-weight: 700;
    margin: 40px 0px 60px 0px;
}

.buttons_row {
    display: flex;
}

.error_msg_section {
    margin-top: 20px;
    max-width: 550px;
}


.primaryButton {
    background: #0078d4;
    color: #fff;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.333em;
    height: 45px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 6px;
    margin-right: 20px;
}

.primaryButton:hover {
    background: #005a9e;
}

.register_btn .primaryButton {
    display: block;
    line-height: normal;
    padding-top: 10px;
}

.register_btn a:hover {
    color: #fff;
}

#registrationModal .modal-body:focus {
    outline: 1px solid #000000;
}

.primaryButton:focus {
    outline: 1px dotted #333;
    outline-offset: 2px;
}