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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111b21;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header .logo {
    width: 60px;
    height: 60px;
    background-color: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.auth-header .logo svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.auth-header h1 {
    color: #e9edef;
    font-size: 20px;
    font-weight: 400;
}

.auth-header p {
    color: #8696a0;
    font-size: 14px;
    margin-top: 8px;
}

.auth-container {
    background-color: #202c33;
    border-radius: 8px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    color: #8696a0;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background-color: #2a3942;
    border: 1px solid #3b4a54;
    border-radius: 8px;
    color: #e9edef;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #00a884;
}

.form-group input::placeholder {
    color: #667781;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: #00a884;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #02906f;
}

.btn-primary:disabled {
    background-color: #1d3d35;
    color: #667781;
    cursor: not-allowed;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #8696a0;
    font-size: 14px;
}

.auth-footer a {
    color: #00a884;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.error-message {
    background-color: #3b1c1c;
    border: 1px solid #5c2c2c;
    color: #f15c6d;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    background-color: #1c3b2a;
    border: 1px solid #2c5c3c;
    color: #4caf50;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
}

.success-message.show {
    display: block;
}

@media (max-width: 480px) {
    .auth-container {
        margin: 16px;
        padding: 24px;
    }
}
