/* Base Elements */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    background: url('/background.png') no-repeat;
    background-size: 100% 100%;
    width: 100%;
}

p {
    font-size: 13px;
    font-weight: 700;
}

    p.lead {
        color: white;
        font-weight: 700;
    }

h1 {
    color: white;
    font-weight: 700;
}

label {
    color: #ffe345;
    font-weight: bold;
}

/* Focus States */
.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;
}

/* Form Styling */
.form-container {
    max-width: 590px;
    width: 100%;
}

.form {
    background-color: #ED2525;
    padding: 5% 10%;
}

.form-heading {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.submit-button {
    background-color: #ffe345;
    color: black;
    font-weight: bold;
    border: 3px solid black;
    padding: 10px 15px;
    margin-top: 15px;
}

.text-danger {
    color: white !important;
    margin-top: 5px;
}

/* Form Check Elements */
.form-check-input {
    height: 1.5em;
    width: 1.5em;
}

.form-check-label {
    color: white;
}

.check {
    display: flex;
    gap: 1rem;
}

/* Disclaimer Styling */
.disclaimer {
    color: #ffe345;
    font-weight: 700;
}

.disclaimer-info {
    color: #ffff;
    font-weight: 500;
}

/* Modal Styling */
.modal-content {
    background-color: #ED2525;
}

.modal-header {
    background-color: #ED2525;
}

.modal-title {
    color: yellow;
}

.modal-body {
    color: white;
}

#disclaimerModal p {
    font-size: 18px;
    color: yellow;
}

/* Info Box and Logo */
.info-box p {
    font-size: 20px;
    font-weight: bold;
}

.logo {
    width: 250px;
}

/* Media Queries */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .modal-content {
        width: 80%;
        margin: auto;
    }
}

@media all and (min-width:321px) and (max-width: 480px) {
    .form {
        padding: 10% 10%;
    }

    .logo {
        width: 250px;
    }

    body {
        background-size: inherit;
    }

    .info-box p {
        font-size: 14px;
    }

    .form-heading {
        font-size: 18px;
        margin-top: 1rem;
    }

    .form-container {
        height: 100vh;
    }

    .form-check-input {
        height: 2.5em;
        width: 3.5em;
    }
}
