/* Background */
.login-body {
    background: radial-gradient(circle at center, #1a1a1a, #000000);
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* Card */
.login-card {
    background: rgba(15, 15, 15, 0.95);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #c9a22740;
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.25);
    backdrop-filter: blur(6px);
}

/* Logo */
.logo {
    width: 170px;
    margin-bottom: 10px;
}

.site-title {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
}

.subtitle {
    color: #aaa;
    font-size: larger;
    font-weight: 600;
    text-shadow: 3px 3px 18px #f7e05cc4;
}

/* Inputs */
.form-control {
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

.form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    background: #000;
    color: #fff;
}

.input-group-text {
    background: #111;
    border: 1px solid #333;
    color: #d4af37;
    cursor: pointer;
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(45deg, #c9a227, #ffd700);
    color: #000;
    font-weight: bold;
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #ffd700, #c9a227);
    color: #000;
}

/* Outline Button */
.btn-outline-gold {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: #000;
}

.small-text {
    color: #777;
    font-size: 12px;
}

.policy-page {
    background: #fff;
    padding: 30px;
    margin-top: 40px;
    border-radius: 8px;
}

.policy-page h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.policy-page h3 {
    margin-top: 25px;
    font-size: 20px;
}

.policy-page ul {
    padding-left: 20px;
}

.login-links {
    text-align: center;
    margin-top: 15px;
}

.login-links a {
    color: #888;
    font-size: 13px;
}

.recaptcha-text {
    font-size: 11px;
    text-align: center;
    color: #777;
    margin-top: 10px;
}

/* POLICY PAGES THEME */

.page-wrapper {
    min-height: 100vh;
    background: radial-gradient(circle at center, #111, #000);
    padding: 40px 0;
}

.policy-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.15);
}

.policy-header {
    text-align: center;
    margin-bottom: 30px;
}

.policy-header img {
    width: 90px;
    margin-bottom: 10px;
}

.policy-title {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
}

.policy-card h3 {
    color: #d4af37;
    margin-top: 28px;
    font-size: 20px;
}

.policy-card p,
.policy-card li {
    color: #ccc;
    line-height: 1.7;
    font-size: 15px;
}

.policy-card ul {
    padding-left: 18px;
}

.back-login {
    text-align: center;
    margin-top: 25px;
}

.back-login a {
    color: #d4af37;
    text-decoration: none;
}

.back-login a:hover {
    text-decoration: underline;
}

/* This is for toast notifications */

/* Container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Toast Box */
.toast {
    min-width: 250px;
    max-width: 350px;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s ease;
    position: relative;
}

/* Show Animation */
.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Success Style */
.toast.success {
    background: linear-gradient(45deg, #28a745, #218838);
}

/* Error Style */
.toast.error {
    background: linear-gradient(45deg, #dc3545, #c82333);
}

/* Warning Style */
.toast.warning {
    background: linear-gradient(45deg, #ffc107, #e0a800);
}

/* Info Style */
.toast.info {
    background: linear-gradient(45deg, #17a2b8, #0c5460);
}

/* Close Button */
.toast .close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;
}