* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    width: 420px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

h2 {
    color: #1a1a1a;
    margin-bottom: 24px;
    font-size: 22px;
    border-left: 4px solid #2e7d32;
    padding-left: 12px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #444444;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input, select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    background-color: #fafafa;
    outline: none;
    transition: border-color 0.2s;
}

input:focus, select:focus {
    border-color: #2e7d32;
    background-color: #ffffff;
}

button {
    width: 100%;
    padding: 14px;
    background-color: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #1b5e20;
}

.divider {
    border: none;
    border-top: 1px solid #eeeeee;
    margin: 20px 0;
}