/* Authentication Pages Styles (Login & Register) */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    padding-top: max(10vh, 60px);
}

/* Login Container */
.login-container,
.register-container {
    max-width: 500px;
    width: 100%;
}

.register-container {
    max-width: 600px;
}

/* Login/Register Box */
.login-box,
.register-box {
    background: white;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Title */
.login-title,
.register-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #363636;
    margin-bottom: 1.5rem;
}

.login-title a,
.register-title a {
    color: #363636;
    text-decoration: none;
}

.login-title a:hover,
.register-title a:hover {
    color: #667eea;
}

.login-title .icon,
.register-title .icon {
    color: #667eea;
    margin-right: 0.5rem;
}

/* Input Icons */
.input-icon {
    color: #dbdbdb;
}

/* Login/Register Button */
.login-button,
.register-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem;
    margin-top: 0.75rem;
}

.login-button:hover,
.register-button:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f91 100%);
}

/* Newsletter Checkbox */
.newsletter-label {
    font-size: 0.875rem;
}

/* Links */
.login-link,
.register-link {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.875rem;
}

.login-link a,
.register-link a {
    color: #667eea;
    font-weight: 600;
}

/* Footer Text */
.footer-text {
    text-align: center;
    color: white;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.footer-text a {
    color: white;
    text-decoration: underline;
}

/* Success Message */
.success-message {
    background: #f0f9ff;
    border: 2px solid #e0f2fe;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-icon {
    background: #22c55e;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.success-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #363636;
}

/* Error Message */
.error-message {
    background: #fee;
    border: 2px solid #fcc;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    color: #c33;
    font-weight: 600;
    font-size: 0.875rem;
}

