/* Auth login page unique styles */

.auth-login-page {
    padding-top: 100px;
    min-height: auto;
}

.forgot-link {
    font-size: .75rem;
    font-weight: 600;
    color: #ea580c;
    text-decoration: none;
    transition: color .2s;
}

.forgot-link:hover {
    color: #c2410c;
}

.login-submit {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .875rem;
    color: #fff;
    border: none;
    background: linear-gradient(to right, #f97316, #ea580c);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
    cursor: pointer;
    margin-top: 24px;
}

.login-submit:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.or-divider .line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.or-divider span {
    font-size: .75rem;
    font-weight: 500;
    color: #9ca3af;
}

.google-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    color: #111827;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.google-btn:hover {
    background: #f9fafb;
}

.signup-row {
    text-align: center;
    font-size: .875rem;
    color: #6b7280;
    margin-top: 24px;
    margin-bottom: 0;
}

.signup-row a {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.signup-row a:hover {
    color: #c2410c;
}
