body {
    font-family: Inter, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #111827;
}
/* HEADER */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}
.brand {
    font-weight: 700;
    font-size: 18px;
    color: #2563eb;
    letter-spacing: -0.4px;
}
/* LOGIN CARD */
.login-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8fafc;
}
.login-card {
    max-width: 420px;
    width: 100%;
    background: white;
    border-radius: 14px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.25s;
}
.login-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}
/* INPUTS */
.form-floating > .form-control {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 18px 14px;
    background: white;
    transition: all 0.2s;
}
.form-floating > .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
/* LABEL */
.form-floating label {
    color: #6b7280;
}
/* PASSWORD TOGGLE */
.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}
.password-toggle:hover {
    color: #2563eb;
}
/* BUTTON */
.btn-primary {
    background: #f97316;
    color: #111827;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-primary:hover {
    background: #1e3a5f;
    background: #f97316;
    color: #f8fafc;
    background: #111827;
}
/* SOCIAL BUTTONS */
.social-btn {
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    background: white;
    transition: all 0.2s;
}
.social-btn:hover {
    background: #f8fafc;
}
/* DIVIDER */
.divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0;
}
.divider hr {
    flex: 1;
    border-color: #e5e7eb;
}
/* FOOTER TEXT */
.bottom-text {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}
.bottom-text a {
    color: #2563eb;
    font-weight: 600;
}
.bottom-text a:hover {
    color: #1d4ed8;
}
.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}