/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Define CSS variables for colors and fonts */
:root {
    --primary-color: #6200ea; /* Deep Purple */
    --primary-color-dark: #3700b3;
    --secondary-color: #03dac6; /* Teal */
    --secondary-color-dark: #018786;
    --background-color: #f0f4f8;
    --gradient-background: linear-gradient(135deg, #f5f7fa 0%, #dfe7f1 100%);
    --text-color: #333;
    --text-light-color: #555;
    --font-family: 'Roboto', sans-serif;
    --shadow-light: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Reset default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--font-family);
    background: var(--gradient-background); /* Elegant gradient background */
    color: var(--text-color);
    background-attachment: fixed;
}

/* Flexbox layout for full-height pages */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    text-align: center;
}

.form-info {
    margin-bottom: 20px;
    background: var(--background-color); /* Subtle background color */
    padding: 15px;
    border-left: 5px solid var(--primary-color); /* Highlighted border */
    border-radius: 10px; /* Rounded corners */
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light-color);
}

.form-info p {
    margin: 0;
}

/* Main content fills available space */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    box-shadow: none;
}


/* Content box with enhanced style */
.content {
    background: white;
    padding: 40px;
    border-radius: 20px; /* Smooth rounded corners */
    box-shadow: var(--shadow-light);
    max-width: 800px;
    width: 90%;
    animation: fadeIn 1s ease-in-out;
    text-align: center;
}

/* Footer styles with subtle aesthetics */
/*.site-footer {*/
/*    background-color: whitesmoke;*/
/*    color: var(--text-light-color);*/
/*    text-align: center;*/
/*    padding: 0px 0;*/
/*    font-size: 10px;*/
/*    border-top: 1px solid #e0e0e0;*/
/*    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05); !* Subtle shadow above footer *!*/
/*}*/

/* Header styles */
h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 36px; /* Larger for emphasis */
    font-weight: 700;
}

/* Paragraph styles */
p {
    color: var(--text-light-color);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
}

/* Button container */
.buttons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Enhanced spacing */
    flex-wrap: wrap; /* Wrap buttons on smaller screens */
    margin-top: 30px;
}

/* Individual button sections */
.button-section {
    text-align: center;
    flex: 1;
}

/* Button styles with modern touches */
button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px; /* Pill-shaped buttons */
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-transform: uppercase;
}

button:hover {
    transform: translateY(-4px); /* Slight hover lift */
    box-shadow: var(--shadow-hover);
}

/* Primary button with gradient hover effect */
.btn-primary {
    background-image: linear-gradient(to right, var(--primary-color), var(--primary-color-dark));
}

.btn-primary:hover {
    background-image: linear-gradient(to right, var(--primary-color-dark), var(--secondary-color));
}

/* Secondary button with gradient hover effect */
.btn-secondary {
    background-image: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
}

.btn-secondary:hover {
    background-image: linear-gradient(to right, var(--secondary-color-dark), var(--primary-color));
}

/* Text below buttons */
.button-info {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}



/* Form hint text */
.form-hint {
    font-size: 14px;
    color: var(--text-light-color);
    margin-top: 5px;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
    }

    .button-section {
        margin-bottom: 20px;
    }

    h1 {
        font-size: 28px; /* Adjusted for smaller screens */
    }

    p {
        font-size: 16px;
    }
}

/* Fade-in animation for content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
