/* Copyright © 2026 YourQuiz. All rights reserved. */

/* ---------- REGISTRATION ---------- */
#contactOverlayLayer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10005;
    display: none;
}

.contactWindowBox {
    width: 390px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    border: 2px solid #1398cd;
}

.contactWindowHeader {
    position: relative;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
}

.contactWindowHeader h2 {
    margin: 0;
    font-weight: bold;
    color: #333;
}

.contactWindowTitle {
    font-weight: bold;
    font-size: 24px;   /* 👈 MATCHES Login h2 */
    color: #333;
    margin: 0;         /* same as login */
}


.contactWindowControls {
    position: absolute;
    top: 0;
    right: 0;
}

.contactWindowControls button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.contactWindowControls button:hover {
    opacity: 0.6;    
}

.contact-email-title{
    font-weight:bold;
    margin-top:18px;
    margin-bottom:6px;
}

.contact-email{
    text-align:center;
    font-size:20px;
    font-weight:bold;
}

.contact-email a{
    color:#0a66cc;
    text-decoration:none;
}

.contact-email a:hover{
    text-decoration:underline;
}




