body {
    background: linear-gradient(135deg, #ffedd5 0%, #f3f4f6 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
    padding: 40px;
}

h1 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1em;
}

.btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: #e0e0e0;
    border-color: #ccc;
    box-shadow: none;
    transform: none;
}

.status {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.status.error {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #842029;
}

.status.success {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #f97316;
}

.form-hint {
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
}

.form-hint a {
    color: #f97316;
    text-decoration: none;
}

.help-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-left: 5px;
}

.help-link:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer a {
    color: #f97316;
    text-decoration: none;
}
