﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

ul {
    list-style-type: none; /* Remove default bullets */
    padding-left: 1em; /* Add space for the custom symbol */
}

    ul li::before {
        content: "▪ "; /* Small solid square symbol (U+25AA) */
        color: #dc3545; /* Change color as desired */
        font-size: 0.8em; /* Adjust size of the square */
    }

p {
    margin-bottom: 0;
}

.alert-warning a {
    text-decoration: none;
    color: #664d03;
}

    .alert-warning a:hover {
        color: #a37a03;
    }

/* From Uiverse.io by gharsh11032000 */
.form-container {
    width: 350px;
    background-color: #fff;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: #212121;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
}

    .form-container button:active {
        scale: 0.95;
    }

    .form-container .logo-container {
        margin-bottom: 12px;
        text-align: center;
        font-weight: 700;
        font-size: 20px;
    }

        .form-container .logo-container p {
            font-weight: 500;
            font-size: 12px;
        }

        .form-container .logo-container img {
            max-width: 75%;
        }

    .form-container .form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .form-container .form-check .form-check-label {
        margin-top: -20px;
    }

    .form-container .form-group {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

        .form-container .form-group label {
            display: block;
            margin-bottom: 5px;
        }

        .form-container .form-group input[type="text"],
        .form-container .form-group input[type="email"],
        .form-container .form-group input[type="password"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 6px;
            font-family: inherit;
            border: 1px solid #ccc;
        }

        .form-container .form-group input::placeholder {
            opacity: 0.5;
        }

        .form-container .form-group input[type="text"]:focus,
        .form-container .form-group input[type="email"]:focus,
        .form-container .form-group input[type="password"]:focus {
            outline: none;
            border-color: #1778f2;
        }

    .form-container .form-submit-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: inherit;
        color: #fff;
        background-color: #004EA1;
        border: none;
        width: 100%;
        padding: 12px 16px;
        font-size: inherit;
        gap: 8px;
        margin: 12px 0;
        cursor: pointer;
        border-radius: 6px;
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
    }

        .form-container .form-submit-btn:hover {
            background-color: #313131;
        }

    .form-container .link {
        color: #004ea1;
        text-decoration: none;
    }

        .form-container .link:hover {
            color: #4f6f91;
            text-decoration: none;
        }

    .form-container .forgot-password-link {
        align-self: flex-end;
        margin-top: -20px;
    }

    .form-container .signup-link {
        align-self: center;
        font-weight: 500;
    }

        .form-container .signup-link .link {
            font-weight: 400;
        }

    .form-container .line {
        width: 100%;
        height: 1px;
        background-color: #212121;
        opacity: 0.1;
    }

.toggle-password {
    position: absolute;
    right: 15px;
    top: 42px;
    cursor: pointer;
    font-size: medium;
    opacity: 0.7;
}