/* General Styles */
body {
    width: 100vw;
    height: 100vh;
    color: #fff;
    background: linear-gradient(-45deg, #CB6336, #CB6336, #162264, #162264);
    background-size: 300% 300%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: Gradient 15s ease infinite;
}

/* Animated Background */
@keyframes Gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Login Box */
.login-box {
    width: 100%;
    max-width: 400px;
}

/* Card Customization */
.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 1.2rem;
}

/* Input Fields */
.form-control {
    border-radius: 5px;
    font-size: 1rem;
}

/* Login Button */
.btn-success {
    border-radius: 5px;
    font-size: 1.1rem;
    padding: 10px;
}

/* Disclaimer */
.disclaimer {
    font-size: 0.85rem;
    line-height: 1.2;
    text-align: center;
}

/* Responsive Styling */
@media only screen and (max-width: 600px) {
    h1 {
        font-size: 36px;
        text-shadow: 2px 2px #000;
    }
}

@media only screen and (min-width: 601px) {
    h1 {
        font-size: 48px;
        text-shadow: 2px 2px #000;
    }
}
