/* Inherit base styles from landing-minimal.css */
@import url('landing-minimal.css');

/* Login Specific Styles */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 1rem;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid #3f3f46;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.4s ease-out;
}

/* Header */
.card-header {
    margin-bottom: 2rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.card-header:hover {
    opacity: 0.8;
}

.card-logo-box {
    width: 3.5rem;
    height: 3.5rem;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-logo-icon {
    width: 2rem;
    height: 2rem;
    color: #fafafa;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 0.5rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Form Fields (Visual Only / Disabled) */
.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.input-field {
    width: 100%;
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid #3f3f46;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: #a1a1aa;
    transition: all 0.2s ease;
    outline: none;
}

.input-field:focus {
    border-color: #71717a;
    background: rgba(39, 39, 42, 0.8);
}

.input-field:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.password-group {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #71717a;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    width: 100%;
    background: #3f3f46;
    color: #fafafa;
    font-weight: 600;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #52525b;
}

.btn-primary.contact-sales {
    background: transparent;
    border: 1px solid #3f3f46;
    color: #a1a1aa;
    transition: all 0.2s ease;
}

.btn-primary.contact-sales:hover {
    background: #27272a;
    color: #fafafa;
    border-color: #52525b;
}

.email-hint {
    text-align: center;
    color: #52525b;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #71717a;
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #3f3f46;
}

.divider span {
    padding: 0 1rem;
}

/* Social Login */
.btn-social {
    width: 100%;
    background: #fafafa;
    color: #18181b;
    font-weight: 600;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.btn-social:hover {
    background: #e4e4e7;
    transform: translateY(-1px);
}

.btn-social img {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.card-footer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #71717a;
    line-height: 1.5;
}

.card-footer a {
    color: #a1a1aa;
    text-decoration: underline;
    transition: color 0.2s;
}

.card-footer a:hover {
    color: #fafafa;
}

.hidden {
    display: none;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-label {
    color: #71717a;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.email-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(39, 39, 42, 0.5);
    border: 1px solid #3f3f46;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
}

.email-display span {
    color: #fafafa;
    font-weight: 500;
    font-size: 1rem;
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71717a;
    transition: color 0.2s;
}

.copy-btn:hover {
    color: #fafafa;
}

.copy-feedback {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    height: 1rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}