body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
}

.container {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.card h2 {
    color: #20c997;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #20c997;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background: #17a085;
}

.footer-text {
    margin-top: 20px;
    font-size: 14px;
}

.footer-text a {
    color: #20c997;
    text-decoration: none;
    font-weight: 600;
}