@font-face {
    font-family: 'Diatype';
    src: url('/fonts/Diatype/ABCDiatype-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FKRomanStandard';
    src: url('/fonts/FKRomanStandard/woff2/FKRomanStandard-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    position: relative;
    background-color: #f8f9fa;
    font-family: 'Diatype', sans-serif;
    background-image: url("../../../images/login2.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    z-index: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000040;
    /* 0.5 = 50% opacity */
    z-index: -1;
}

.logo-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo-circle {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.logo-inner {
    width: 60px;
    height: 60px;
    border: 4px solid #000;
    border-radius: 50%;
}

.brand-name {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 600;
}

.tagline {
    font-size: 14px;
    margin-bottom: 30px;
}

.action-button {
    background-color: white;
    color: #301912;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
    font-weight: 500;
    font-size: 16px;
}

.action-button.highlight {
    background-color: #FBFF36;
}

.action-button-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.action-button .more {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.section-title {
    margin: 25px 0 15px;
    font-size: 16px;
    color: #FFFFFF
}

/* Media query for desktop/laptop screens */
@media (min-width: 768px) {
    .container {
        max-width: 540px;
        margin: 0 auto;
    }

    .action-button {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Custom responsive styles for modals */
@media (max-width: 576px) {

    /* Mobile adjustments */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .modal-content {
        border-radius: 1rem !important;
    }

    .modal-body {
        padding: 1rem !important;
    }

    /* Make text smaller on small screens */
    .fs-md-4 {
        font-size: 1.2rem !important;
    }
}

@media (min-width: 577px) and (max-width: 768px) {

    /* Tablet adjustments */
    .modal-dialog {
        max-width: 450px;
    }
}

@media (min-width: 769px) {

    /* Desktop adjustments */
    .modal-dialog {
        max-width: 500px;
    }

    .modal-body {
        padding: 1.5rem !important;
    }
}