html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
    color: white;
}
body {
    margin-bottom: 60px;
    color: white;
}

.form-control::placeholder {
    color: #ccc !important;
    opacity: .5
}

.text-muted {
    color: #ccc !important; /* Change this to your desired color */
}

.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-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}
.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}
.custom-container {
    background: #333333;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}
.social-media-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
    .social-media-icons a {
        color: white;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }
        .social-media-icons a:hover {
            color: #555;
        }
.grayed-out {
    opacity: 0.5;
    pointer-events: none;
}
.bg-blurred {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: -1;
}
.custom-container {
    background: #333333;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
@media (max-width: 992px) {
    .custom-container {
        max-width: 100%;
        padding: 15px;
    }
}

