/* File: styles.css */
:root {
    --primary-color: #376E26;
    --dark-color: #112A09;
    --light-color: #f5f8fa;
    --accent-color: #AE56F3;
    --signal-green: #C4EE4D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    min-height: 200px;
    margin: 0 auto;
    background-color: var(--dark-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    animation: fadeIn 0.8s ease-out;
}

.container img {
    display: block;
    margin: 0 auto 20px;
    width: 200px;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
}

p {
    color: var(--accent-color);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-primary {
    background-color: white;
    color: black;
    box-shadow: 0 4px 12px rgba(37, 186, 184, 0.2);
}

.icon {
    width: 24px;
    height: 24px;
}

.footer {
    margin-top: 20px;
    color: black;
    font-size: 14px;
}

.footer a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Spinner styles */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    min-width: 150px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(55, 110, 38, 0.2);
    border-radius: 50%;
    border-top-color: var(--signal-green);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
