/* BACKGROUND LOGIN */
body {
    font-family: Georgia, "Times New Roman", Times, Merriweather, Cambria, serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
    background:
        linear-gradient(
            120deg,
            rgba(206, 169, 169, 0.9) 0%,
            rgb(67, 105, 10) 100%
        ),
        url('/img/logo.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #333;
}

.centerDiv {
    height: 100vh;
    width: 100%;
}

.card {
    border-radius: 40px !important;
    backdrop-filter: blur(15px);
    background: linear-gradient(120deg, #b6eaa0, #e1c0a2) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

button{
    background-color: #c0a447 !important;
    outline: none !important;
}

.hero-section {
    background: linear-gradient(135deg, #0a0b11, #151826);
    color: #fff;
}

.hero-title-primary {
    filter: drop-shadow(6px 6px 4px #000);
}

.hero-title-accent {
    color: gainsboro;
    text-decoration: underline;
    margin-left: 5px;
    filter: drop-shadow(6px 6px 4px #000);
}

.text-gradient {
    background: linear-gradient(90deg, #5ddcff, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);

}

.hero-logo {
    max-width: 40px;
    width: 40%;
    height: 20px;
}





