* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Lato, sans-serif;
}
:root {
    --bg-color: #fff;
    --text-color: #191919;
    --primary-600: #850033;
    --primary-500: #c03434;
    --primary-400: #ef4444;
    --primary-300: #f8a4a4;
    --primary-200: #fcdada;
    --primary-100: #fdecec;
    --accent-color: #606060;
    --border-color: #e0e0e0;
    --card-bg: #f4f3fb;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --input-text: #999;
    --color-red: #fb3748;
    --color-red-light: rgba(251, 55, 72, 0.10196078431372549);
    --color-yellow: #dfb400;
    --color-yellow-light: rgba(255, 219, 67, 0.1);
    --color-green: #1fc16b;
    --color-green-light: #e6fbf0;
    --color-neutral: #050202;
    --color-neutral-200: #fafafa;
    --color-neutral-300: #fff;
    --color-neutral-400: #f8f8f8;
    --color-neutral-500: #e4e4e4;
    --color-neutral-700: #bbb;
    --color-neutral-800: #777;
    --color-neutral-900: #333;
    --gaming-background: #e3d7f7;
    --gaming-color: #2c0bbf;
    --office-background: #dfeeff;
    --office-color: #007bff;
    --budget-background: #dbf5e3;
    --budget-color: #009c49;
    --business-background: #e5e5e5;
    --business-color: #495057;
    --students-background: #ffe7cc;
    --students-color: #ff8c00;
    --teachers-background: #850033;
    --sub-banner-card-background: #ffecd4;
    --sub-banner-card2-background: #c6d9ff;
    --sub-banner-card5-background: #d6effc;
}
.auth-section {
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.login-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 3rem;
    max-width: 500px;
    width: 100%;
}
.social-btn {
    border-radius: 50px;
    border: 1px solid var(--color-neutral-900);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    font-size: 14px;
}
.social-btn i {
    font-size: 16px;
}
.social-btn:hover {
    border: 1px solid var(--color-neutral-900);
    background-color: var(--color-neutral-400);
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}
.divider:after,
.divider:before {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}
.divider:not(:empty):before {
    margin-right: 0.75em;
}
.divider:not(:empty):after {
    margin-left: 0.75em;
}
.form-control {
    border-radius: 8px;
}
.btn-login {
    border-radius: 50px;
    background: var(--primary-400);
    color: var(--bg-color);
    font-weight: 500;
    padding: 13px 10px;
}
.btn-login:hover {
    background: var(--primary-500);
    color: var(--bg-color);
}
.top-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eee;
    margin: 0 auto 5px;
}
.primaryText {
    font-weight: 600;
    font-style: Regular;
    font-size: 22px;
    color: var(--color-neutral-900);
}
.secondaryText {
    font-weight: 500;
    font-style: Regular;
    font-size: 13px;
    color: var(--color-neutral-800);
}
.linkText {
    color: var(--color-neutral-900);
}
.formInput {
    padding: 10px;
    border: 1px solid var(--color-neutral-700);
}
.custom-toast {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}
.toast-success {
    background-color: #e6ffed;
    color: #057a55;
    border-left: 5px solid #28a745;
}
.toast-warning {
    background-color: #fff8e1;
    color: #8d6e00;
    border-left: 5px solid #ffc107;
}
.toast-error {
    background-color: #ffecec;
    color: #d32f2f;
    border-left: 5px solid #dc3545;
}
.toast-link {
    font-weight: 500;
    text-decoration: none;
}
.toast-success .toast-link {
    color: #057a55;
}
.toast-warning .toast-link {
    color: #8d6e00;
}
.toast-error .toast-link {
    color: #d32f2f;
}
.toast .btn-close {
    font-size: 0.65rem;
    width: 0.75rem;
    height: 0.75rem;
    padding: 0.25rem;
    margin-left: 10px;
    opacity: 0.7;
}
.toast .btn-close:hover {
    opacity: 1;
}
