/*StyleHub - Login CSS */
 
* { margin: 0; padding: 0; box-sizing: border-box; }
 
body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
}
 
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    background: #111111;
    background-image: linear-gradient(135deg, #111111 45%, #C8536E 46%, #E8829A 60%, #F0AABF 100%);
}
 
.login-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    text-align: center;
}
 
.brand-mark {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}
 
.login-title {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
 
.login-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
}
 
/* PILL INPUTS */
.input-pill {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}
 
.input-pill input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 18px;
    font-size: 14px;
    color: white;
    font-family: Arial, sans-serif;
}
 
.input-pill input::placeholder {
    color: rgba(255,255,255,0.55);
}
 
.pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: white;
    color: #C8536E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
/* FORGOT ROW */
.forgot-row {
    text-align: right;
    margin: -6px 6px 22px 0;
}
 
.forgot-link {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 600;
}
 
.forgot-link:hover { color: white; text-decoration: underline; }
 
/* LOGIN BUTTON */
.btn-login {
    width: 100%;
    padding: 15px;
    background-color: white;
    color: #111111;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
}
 
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
 
/* SWITCH / BACK LINKS */
.switch-text {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-top: 16px;
}
 
.switch-text a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}
 
.back-link {
    margin-top: 26px;
}
 
.back-link a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 600;
}
 
.back-link a:hover { color: white; }
 
/* MOBILE */
@media (max-width: 480px) {
    .login-page { padding: 24px 16px; }
    .login-title { font-size: 26px; }
    .brand-mark { font-size: 16px; letter-spacing: 3px; margin-bottom: 12px; }
    .login-sub { font-size: 12px; margin-bottom: 28px; }
    .input-pill { margin-bottom: 14px; }
    .input-pill input { padding: 11px 14px; font-size: 13px; }
    .pill-icon { width: 34px; height: 34px; }
    .btn-login { padding: 13px; font-size: 13px; }
    .switch-text { font-size: 12px; }
}
 
@media (max-width: 340px) {
    .login-title { font-size: 22px; }
    .brand-mark { letter-spacing: 2px; }
}
 
