body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.main-container {
    background: linear-gradient(135deg, #5CB85C 0%, #2E8B57 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.main-container h1 {
    color: white;
    margin-bottom: 30px;
    font-size: 28px;
}

.login-link {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #90EE90 0%, #76C776 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.login-link:hover {
    background: linear-gradient(135deg, #A8E6A8 0%, #90EE90 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 238, 144, 0.4);
}