/*
 * Global styles for Secura KS Dynamic Page
 * All layout and visuals are handled via external CSS and Bootstrap.
 */

body {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    max-width: 600px;
}

.btn-custom {
    margin-top: 1rem;
    background-color: #ffc107;
    color: #212529;
    font-weight: bold;
}

.btn-custom:hover {
    background-color: #e0a800;
    color: white;
}