@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Dancing+Script:wght@700&family=Golos+Text:wght@400..900&display=swap");

/* Pramukh Bangles Login Theme - Premium App Style */

:root {
    --pramukh-navy: #0a192f;
    --pramukh-gold-light: #f6d365;
    --pramukh-gold-dark: #fda085;
    --pramukh-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body.account-page {
    background: radial-gradient(circle at top right, #112240, #0a192f);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: 'Golos Text', sans-serif;
    color: #fff;
    overflow: hidden;
}

/* Background Decorations */
body.account-page::before,
body.account-page::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--pramukh-gold);
    filter: blur(80px);
    opacity: 0.1;
    z-index: -1;
}

body.account-page::before { top: -50px; left: -50px; }
body.account-page::after { bottom: -50px; right: -50px; }

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    z-index: 1;
}

.login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border: 2px solid #f6d365;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 0 20px rgba(246, 211, 101, 0.2);
}

.logo-circle::before {
    content: 'B';
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    background: var(--pramukh-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: var(--pramukh-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    text-align: center;
}

.brand-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    color: #f6d365;
    margin-bottom: 8px;
    text-align: center;
    margin-top: -8px;
}

.welcome-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0px;
    text-align: center;
}

.login-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    text-align: center;
}

.login-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    text-align: center;
}

/* Form Styles */
.form-label {
    color: #f6d365;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 13px;
}

.input-group {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #f6d365 !important;
    box-shadow: 0 0 0 2px rgba(246, 211, 101, 0.1);
}

.form-control {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.input-group-text {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Button styles */
.btn-gold {
    background: var(--pramukh-gold);
    border: none;
    color: #0a192f;
    font-weight: 800;
    padding: 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(246, 211, 101, 0.4);
    filter: brightness(1.1);
}

.forgot-link {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-size: 13px;
    color: #f6d365;
    text-decoration: none;
    opacity: 0.8;
}

.forgot-link:hover { opacity: 1; }

.powered-by {
    text-align: center;
    margin-top: 30px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}
