﻿.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    .popup-box h2 {
        margin-bottom: 20px;
        text-align: center;
        color: #ff4081;
    }

    .popup-box input {
        width: 100%;
        margin: 10px 0;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}
.social-btn {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.google {
    background-color: #DB4437;
}

.insta {
    background-color: #C13584;
}
.error-text {
    color: red;
    font-size: 1.25rem;
    margin-bottom: 10px;
    text-align: center;
}

.divider {
    text-align: center;
    margin: 20px 0 10px;
    font-size: 0.9rem;
    color: #888;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

    .social-btn.google {
        background-color: #4285F4; /* Official Google Blue */
        color: white;
    }

    .social-btn.insta {
        background-color: #E1306C; /* Official Instagram Pink */
        color: white;
    }
    .social-btn.google:hover {
        background-color: #3367D6;
    }

    .social-btn.insta:hover {
        background-color: #C1275B;
    }
.form-links {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9rem;
}

    .form-links a {
        color: #ff4081;
        text-decoration: none;
        margin: 0 5px;
    }

        .form-links a:hover {
            text-decoration: underline;
        }
.link-btn {
    background: none;
    border: none;
    color: #ff4081;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0 5px;
}

