body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.form-container {
    background: #fff;
    padding: 2rem;
    max-width: 360px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #111;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-primary {
    width: 100%;
    padding: 0.8rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: #333;
}

.form-error {
    color: red;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.form-info {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
}

.link {
    color: #0070c9;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}