* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0A0F2C 0%, #1E1E2F 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 48px;
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #FFA500;
}

.subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.status {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status.loading {
    color: #FFA500;
}

.status.success {
    color: #10B981;
}

.status.error {
    color: #EF4444;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #FFA500;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.button {
    background: #FFA500;
    color: #0A0F2C;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    width: 100%;
}

.button:hover {
    background: #FFB84D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.link-button {
    display: block;
    background: rgba(255, 165, 0, 0.1);
    color: #FFA500;
    border: 2px solid #FFA500;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.link-button:hover {
    background: rgba(255, 165, 0, 0.2);
    transform: translateY(-2px);
}

.links {
    margin-top: 32px;
}

.icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.icon.success {
    color: #10B981;
}

.icon.error {
    color: #EF4444;
}

.hidden {
    display: none;
}

.link {
    color: #FFA500;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

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

.info {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 20px;
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
    text-align: left;
}

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

.input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.input:focus {
    outline: none;
    border-color: #FFA500;
    background: rgba(255, 255, 255, 0.1);
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-requirements {
    margin-top: 8px;
}

.password-requirements small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 24px;
    }

    h1 {
        font-size: 24px;
    }

    .logo {
        font-size: 40px;
    }
}

