/* =========================================================
   auth.css - login, register, password reset pages
   ========================================================= */

/* =========================================================
   AUTH FORM CONTAINER
   ========================================================= */

.my-auth-container {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "PT Sans", Arial, sans-serif;
    padding: 0 20px;
}

.my-auth-card {
    width: 100%;
    max-width: 450px;
    background: #fff;
    margin-top: -10px;
}

.my-title-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #d4af37;
    margin-bottom: 25px;
    padding-bottom: 5px;
    width: 100%;
}

.security-text {
    font-size: 15px;
    color: #777;
    text-transform: none;
    white-space: nowrap;
    font-family: "PT Sans", Arial, sans-serif;
}

.my-form-group { margin-bottom: 20px; }

.my-form-group label {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.my-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-size: 14px;
}

select.my-input {
    appearance: none;
    -webkit-appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 40px;
    color: #555 !important;
    height: 42px;
    cursor: pointer;
    font-family: inherit;
}

.my-btn-gold {
    width: 100%;
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 14px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.my-btn-gold:hover { background: #b8962d; }

.my-auth-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 15px;
    color: #555;
}

.my-auth-footer a {
    color: #c9a01c;
    text-decoration: none;
    font-weight: 500;
}

.cf-turnstile {
    margin: 0 auto !important;
    overflow: visible !important;
    transform: translateX(0) !important;
}

.cf-turnstile iframe {
    display: block !important;
    margin: 0 auto !important;
    max-width: none !important;
}
/* =========================================================
   SOCIAL LOGIN
   ========================================================= */

.my-social-separator {
    text-align: center;
    margin: 25px 0;
    border-bottom: 1px solid #eee;
    line-height: 0.1em;
}

.my-social-separator span {
    background: #fff;
    padding: 0 10px;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
}

.my-social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.my-btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.2s;
}

.my-btn-social.google {
    background-color: #ffffff;
    color: #5f6368 !important;
    border: 1px solid #dadce0;
    font-family: 'Roboto', arial, sans-serif;
}

.my-btn-social.google i {
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 18px;
}

.my-btn-social.google:hover {
    background-color: #f8f9fa;
    border-color: #d2d4d7;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.my-btn-social.facebook {
    background-color: #1877f2;
    color: #ffffff;
}

.my-btn-social:hover { opacity: 0.9; color: inherit; }

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .my-input {
    width: 100%;
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #888;
}

.password-toggle.visible {
    color: #d4af37;
}

.password-toggle svg {
    width: 18px;
    height: 18px;
}

.password-toggle .icon-eye-hide { display: none; }
.password-toggle.visible .icon-eye-show { display: none; }
.password-toggle.visible .icon-eye-hide { display: block; }