﻿body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: 'Caveat Brush', cursive;
/*    color: white;*/
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: black;
    position: relative;
    padding-top: 6vh;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('/images/brick-wall.jpg') center center / cover no-repeat;
    opacity: 0.3; /* Adjust this value as needed */
    z-index: 0;
}

body * {
    position: relative;
    z-index: 1;
}

.card {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 12px !important;
    border: 2px solid #e5c33b !important;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 0 5px #FFA500 !important;
}

input,
textarea {
    caret-color: #FFA500; /* Orange */
    color: #e5c33b !important;
}

.form-control {
    color: #FFA500; /* Orange text */
    caret-color: #FFA500;
    background-color: unset !important;
    border-color: #FFA500!important;
}

.btn-card {
    border-color: #e5c33b !important;
    background-color: unset !important;
    color: #e5c33b !important;
}

.form-control:focus {
    background-color: unset !important;
    text-shadow: 0 0 5px #FFA500 !important;
    border-color: #FFA500 !important;
    outline: 0;
    box-shadow: 0 0 5px #FFA500 !important;
}

.neon-text {
    color: #FFA500;
    text-shadow: 0 0 5px #FFA500 !important;
}

.logo {
    max-width: 85vw;
    max-height: 85vh;
    z-index: 2;
}

h1 {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-align: center;
}

@media (max-width: 600px) {
    body {
        padding-top: 2vh !important; /*Add space from top */
    }

    img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    /*.brick-card {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        border-radius: 0;
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: auto;
        position: relative;*/ /* This is required for the vignette overlay */
    /*}*/

    .brick-card > *:not(.vignette) {
        position: relative;
        z-index: 2;
    }
}

.font-caveat {
    font-family: 'Caveat Brush', cursive;
}

a {
    color: #ff073a; /* Neon red */
    text-shadow: 0 0 5px #ff073a;
}

a:hover {
    color: #ff385c;
    text-shadow: 0 0 10px #ff073a;
}

