@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
    background-color: #ffffff;
    color: #1e2329;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem 1.5rem;
    margin-top: 1rem;
    flex-grow: 1;
}

.login-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e2329;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #707a8a;
    margin-bottom: 8px;
}

.form-control {
    background-color: #ffffff !important;
    border: 1px solid #eaecef !important;
    border-radius: 8px;
    padding: 14px 14px;
    font-size: 15px;
    color: #1e2329 !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease;
}

.form-control:hover {
    border-color: #fcd535 !important;
}

.form-control:focus {
    border-color: #fcd535 !important;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: #b7bdc6 !important;
}

.btn {
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    padding: 14px;
    border: none;
    transition: opacity 0.2s ease;
}

.btn-main {
    background-color: #fcd535;
    color: #1e2329;
}

.btn-main:hover {
    opacity: 0.9;
    color: #1e2329;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.8rem 0;
    color: #1e2329;
    font-size: 14px;
}

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

.divider span {
    padding: 0 12px;
}

.btn-secondary {
    background-color: #ffffff;
    border: 1px solid #eaecef;
    color: #1e2329;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    color: #1e2329;
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    flex-shrink: 0;
}

.links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.links a {
    color: #c99400;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.links a:hover {
    text-decoration: underline;
}

.footer {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: #707a8a;
    font-size: 14px;
    margin-top: auto;
}

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

.footer a:hover {
    color: #1e2329;
}

/* Base styles for other pages so they don't break */
.card {
    border: none;
    background: #ffffff;
    box-shadow: none;
    padding: 2.5rem 1.5rem;
    max-width: 420px;
    width: 100%;
    margin: 1rem auto;
}

.card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1e2329;
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: #1e2329;
}

.card p.text-muted {
    color: #707a8a !important;
    font-size: 14px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.otp-inputs input {
    background: #ffffff;
    border: 1px solid #eaecef;
    color: #1e2329;
    width: 45px;
    height: 55px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.otp-inputs input:focus {
    border-color: #fcd535;
    outline: none;
}

.btn-primary, .btn-warning, .btn-success, .btn-info {
    background-color: #fcd535 !important;
    color: #1e2329 !important;
    box-shadow: none !important;
    border: none !important;
}

.btn-primary:hover, .btn-warning:hover, .btn-success:hover, .btn-info:hover {
    opacity: 0.9;
}

.icon-circle {
    display: none !important; /* Hide circles on other pages to match clean binance look */
}

.alert-danger {
    background-color: #ffedeb !important;
    border: 1px solid #ffdbd6 !important;
    color: #f6465d !important;
    border-radius: 8px;
    font-size: 14px;
}
