:root {
    --bg-overlay: rgba(0, 0, 0, 0.85);
    --form-bg: #000000;
    --border-red: #FF3B308C;
    --glow-red: #FF3B308C;
    --border-yellow: #FFCC0073;
    --glow-yellow: rgba(241, 196, 15, 0.6);
    --link-blue: #32ADE6;
    --text-light: #eee;
    --radius: 30px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 100;
}

.modal:target {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--form-bg);
    padding: 2rem 2.5rem;
    width: 320px;
    border: 2px solid var(--border-red);
    border-radius: 20px;
    box-shadow: 0 0 20px var(--glow-red);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    text-align: center;
    position: relative;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.modal-close {
    background-color: #FFCC00;
    padding: 2px 8px;
    border-radius: 50px;
    position: relative;
    top: -5px;
    left: 225px;
    font-size: 1.4rem;
    color: #999999;
    text-decoration: none;
}

.modal-close:hover {

    color: #000;

}

.modal-content input[type="email"],
.modal-content input[type="password"] ,
.modal-content input[type="text"] {
    width: 90%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: transparent;
    border: 2px solid var(--border-yellow);
    border-radius: var(--radius);
    box-shadow: 0 0 8px var(--glow-yellow);
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
}

.modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.options input[type="checkbox"] {
    appearance: none;
    min-width: 15px;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    border: 2px solid var(--border-yellow);
    border-radius: 50%;
    box-shadow: inset 0 0 5px var(--glow-yellow);
    position: relative;
}

.options input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: #ff3b30;
    border-radius: 50%;
}

.options a {
    color: var(--link-blue);
    text-decoration: none;
}

.fallback-wrong-modal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.fallback-wrong-modal a {
    color: var(--link-blue);
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}



.btn-primary {
    display: block;
    width: 100%;
    padding: 30px;
    margin-bottom: 1rem;
    background: #FF3B3040;
    color: var(--text-light);
    border: 2px solid var(--border-red);
    border-radius: 100px;
    box-shadow: 0 0 10px var(--glow-red);
    cursor: pointer;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
}

.btn-primary:hover {
    background: #A82922;
    box-shadow: 0 0 20px var(--glow-red);
}

.alt-link {
    display: block;
    margin-bottom: 1rem;
    color: var(--link-blue);
    font-size: 0.9rem;
    text-decoration: none;
}

.alt-link:hover {
    text-decoration: underline;
}

/* This should be uncommented when we have google/face/apple login working 
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 0;
    margin-bottom: 0.75rem;
    background: transparent;
    border: 2px solid var(--border-red);
    border-radius: var(--radius);
    box-shadow: 0 0 8px var(--glow-red);
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-btn:hover {
  color: #FF3B30;
  border-color: #FF3B30;
  text-shadow: #FF3B30;
  box-shadow: 0 0 20px #FF3B30;
}


.social-btn:hover img {
  filter: grayscale(100%)contrast(0%) sepia(200%) hue-rotate(308deg) saturate(1000%) brightness(100%)
}

*/
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 0;
    margin-bottom: 0.75rem;
    background: transparent;
    border: 2px solid #4444448c;
    border-radius: var(--radius);
    box-shadow: 0 0 8px #5353538c;
    text-decoration: none;
    color: #767676;
    font-size: 0.95rem;
    cursor: not-allowed;
}

  

.social-btn img {
    margin-right: 8px;
}





.terms {
    margin-top: 1rem;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    color: #FFF;
    max-width: 350px;
}

.terms a {
    color: var(--link-blue);
    text-decoration: none;
}

.modal-heading {
    text-align: center;
    color: var(--text-light);
    font-family: 'Bayon', sans-serif;
    font-weight: 400;
    font-size: 46px;
    margin: -30px;
}

