﻿
body {
    padding-bottom: 0px !important;
}

.enterButton {
    display: inline-block;
    text-align: center;
    text-decoration: none; /* Remove underline for <a> */
    /*background-color: #5cb85c;*/
    background-color: #59a1c7;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    transition: background-color 0.3s ease;
}

    .enterButton:hover {
        /*background-color: #4cae4c !important;*/
        background-color: #56b9e9;
    }

    .enterButton:active {
        /*background-color: #449d44 !important;*/
        background-color: #56b9e9;
    }

a.enterButton {
    text-decoration: none !important;
    color: white !important;
}


.newLoginButton {
    padding: 15px 30px !important;
    font-size: 1.2rem !important;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.loginLeft {
    background-color: #113055;
    flex: 0 0 33.3333%; /* Equivalent to col-md-4 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.loginRight {
    /*background-image: url("../images/LoginBG.png");*/
    background-image: url("../images/handSplash.png");
    background-size: cover;
    background-position: center;
    flex: 1; /* Take the remaining space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.loginLogo {
    margin-bottom: 20px;
}

.systemNameText {
    color: white;
    font-size: large;
}

.loginContainer {
    height: 100vh;
    display: flex;
}

.signUp {
    color: white;
    text-align: center; /* Align text in the center */
}

    .signUp a {
        color: white;
        border: 1px solid white;
        padding: 5px;
    }

        .signUp a:hover {
            text-decoration: none;
        }
