/* Common styles */
    @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

    * {
        font-family: "Rubik", sans-serif;
    }
    :root {
        --white: white;
        --black: black;
        --blue: #67b9c5;
        --label: #7d7d7d;
        --off_white: #e3e3e3;
        --gray: #888888;
        --red: red;
        --button_gradient: linear-gradient(to right, #1d6443 0%, #24497e 100%);
    }
/* Common styles */



/* Login styles */
    .guest-page {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        height: 100vh;
        background-color: var(--blue);
    }
    .guest-page .logo {
        width: 100px;
    }
    .guest-page .form {
        background-color: var(--white);
        padding: 30px;
        width: 25%;
        margin-top: 30px;
        border: 1px solid #ededed;
        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
        overflow: hidden;
        border-radius: 0;    
    }
    .guest-page .form .title {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 5px;
        text-align: center;
    }
    .guest-page .form .subtitle {
        color: var(--gray);
        font-size: 17px;
        text-align: center;
        margin: 0 0 30px;
    }
    .guest-page .form .single-form-input {
        margin-bottom: 15px;
    }
    .guest-page .form .form-label {
        color: var(--label);
        font-size: 15px;
        font-weight: normal;
    }
    .guest-page .form .form-control {
        font-size: 15px;
        border: 1px solid var(--off_white);
        height: 45px;
        border-radius: 0;
        box-shadow: none;
    }
    .guest-page .form .form-control:focus {
        border-color: darkblue;
    }
    .guest-page .form a {
        font-size: 14px;
        text-decoration: none;
    }
    .guest-page .form a:hover {
        text-decoration: none;
    }
    .guest-page .form .forgot-password-text {
        color: var(--label);
        position: absolute;
        right: 0;
    }
    .guest-page .form .submit-button {
        color: white;
        background: var(--button_gradient);
        border: 0;
        display: block;
        font-size: 18px;
        width: 100%;
        border-radius: 0;
        padding: 10px 0;
    }
    .guest-page .form .single-form-input:last-of-type {
        margin-bottom: 0;
    }
    .guest-page .form .error-message {
        font-size: 14px;
        color: var(--red);
        margin-top: 3px;
    }
    .guest-page .form span {
        cursor: pointer;
        position: absolute;
        top: 39px;
        font-size: 20px;
        right: 12px;
    }
/* Login styles */


/* Responsive */
    @media screen and (max-width: 1920px) {
    }
    @media screen and (max-width: 1900px) {
    }
    @media screen and (max-width: 1850px) {
    }
    @media screen and (max-width: 1800px) {
    }
    @media screen and (max-width: 1750px) {
    }
    @media screen and (max-width: 1750px) and (max-height: 875px) {
    }
    @media screen and (max-width: 1680px) {
    }
    @media screen and (max-width: 1600px) {
    }
    @media screen and (max-width: 1536px) {
        .guest-page .form {
            width: 30%;
        }
    }
    /* Height: 900 */
    @media screen and (max-width: 1440px) {
    }
    /* Height: 768 */
    @media screen and (max-width: 1366px) {
    }
    @media screen and (max-width: 1366px) and (max-height: 730px) {
    }
    @media screen and (max-width: 1366px) and (max-height: 660px) {
    }
    /* Height: 768 */
    @media screen and (max-width: 1360px) {
    }
    /* Height: 800 */
    @media screen and (max-width: 1280px) {
        .guest-page .form {
            width: 35%;
        }
    }
    /* Height: 768 */
    @media screen and (max-width: 1024px) {
        .guest-page .form {
            width: 45%;
        }
    }
    /* Height: 1024 */
    @media screen and (max-width: 991px) { 
    }
    /* Height: 1024 */
    @media screen and (max-width: 844px) {
        .guest-page .form {
            width: 55%;
        }
    }
    /* Height: 1024 */
    @media screen and (max-width: 768px) {
        .guest-page .form {
            width: 60%;
        }
    }
    /* Height: 1080 */
    @media screen and (max-width: 720px) {
    }
    /* Height: 960 */
    @media screen and (max-width: 650px) {
        .guest-page .form {
            width: 75%;
        }
    }
    @media screen and (max-width: 480px) {
        .guest-page .logo {
            width: 70px;
        }
        .guest-page .form {
            width: 95%;
            margin-top: 20px;
            padding: 20px;
        }
        .guest-page .form .title {
            font-size: 20px;
        }
        .guest-page .form .subtitle {
            font-size: 15px;
            margin: 0 0 10px;
        }
        .guest-page .form .form-label {
            font-size: 14px;
        }
        .guest-page .form .form-control {
            font-size: 14px;
        }
        .guest-page .form .single-form-input {
            margin-bottom: 25px;
        }
    }
    /* Height: 736 */
    @media screen and (max-width: 428px) {
    }
    /* Height: 736 */
    @media screen and (max-width: 414px) {
    }
    /* Height: 667 */
    @media screen and (max-width: 395px) {
    }
    /* Height: 667 */
    @media screen and (max-width: 376px) {
    }
    /* Height: 720 */
    @media screen and (max-width: 360px) {
        .guest-page .form {
            padding: 8px;
        }    
    }
    /* Height: 568 */
    @media screen and (max-width: 320px) {
    }
/* Responsive */