/* Common styles */
    @font-face {
        font-family: CircularStd;
        src: url(../fonts/circular-std-medium-500.ttf);
    }
    * {
        font-family: "CircularStd", sans-serif;
    }
    :root {
        --white: #ffffff;
        --black: #000000;
        --gray_white: #ced4da;
        --red: red;
    }
    a {
        font-size: 14px;
        text-decoration: none;
    }
    a:hover {
        text-decoration: none;
    }
    .form-label {
        font-size: 15px;
        margin-bottom: 3px;
    }
    .form-control {
        border: 1px solid var(--gray_white)!important;
        font-size: 14px!important;
    }
    .error-message {
        font-size: 14px;
        color: var(--red);
        margin-top: 3px;
    }
    .single-form-input {
        margin-bottom: 20px;
    }
    .remember-me {
        display: inline-flex;
        align-items: center;
        color: gray;
    }
    .remember-me .checkbox {
        border-radius: 5px;
        box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
        -webkit-box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
        -moz-box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    }
    .remember-me .text {
        font-size: 14px;
        margin-left: 8px;
    }
    .submit-button {
        background-color: green!important;
        color: white;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 20px;
        border-radius: 50px 20px;
        transition: all 0.5s;
    }
    .submit-button:hover {
        border-radius: 25px 10px;
        background-color: darkgreen!important;
        transition: all 0.5s;
    }
/* Common styles */

.guest-page {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-image: url('../storage/background.jpg');
    background-size: contain;
    background-size: 100% 100%;
}
.guest-page .logo {
    height: 140px;
}
.guest-page .form {
    background-color: var(--white);
    padding: 1.5%;
    width: 25%;
    margin-top: 1%;
    border-radius: 3%;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.50);
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.50);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.50);
}
.forgot-password-message {
    font-size: 14px;
    margin-bottom: 15px;
}