/* 🌾 AFMS Home Page Styles */

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #e8f6f3, #ffffff);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
}

h1 {
    color: #1b5e20;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    background-color: #1b5e20;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #1b5e20;
}

.btn-danger {
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-danger:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}

button {
    font-family: inherit;
}

br {
    line-height: 2;
}

/* Optional container to center all content */
.main-container {
    text-align: center;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
