
/* Modal backdrop */
.debait-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

/* Modal card */
.debait-modal-content {
    background: #ffffff;
    color: #333;
    padding: 40px 30px;
    width: 90%;
    max-width: 420px;
    margin: 80px auto;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.2), 0 10px 10px rgba(0,0,0,0.15);
    position: relative;
    animation: fadeInUp 0.3s ease-out;
}

/* Entry animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close icon */
.debait-close {
    position: absolute;
    top: 12px; right: 16px;
    background: #eee;
    color: #444;
    font-size: 22px;
    padding: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

/* Heading */
.debait-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Input fields */
.debait-input {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: none;
    border-radius: 30px;
    background-color: #f3f3f3;
    font-size: 14px;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.05);
}

/* Login button */
.debait-submit-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 14px;
    background-color: #ff4b2b;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.debait-submit-btn:hover {
    background-color: #e84326;
}

/* Login error/info message */
.debait-login-msg {
    margin-top: 10px;
    color: #e53935;
    font-size: 14px;
    text-align: center;
}

/* Register link section */
.debait-register-text {
    margin-top: 20px;
    font-size: 13px;
    text-align: center;
    color: #666;
}

.debait-register-text a {
    color: #ff4b2b;
    font-weight: 600;
    text-decoration: none;
}

.debait-register-text a:hover {
    text-decoration: underline;
}

/* Social login container */
.debait-social-login {
    margin-top: 30px;
    text-align: center;
}

.debait-social-login strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Google login wrapper */
.google-login-button {
    display: inline-block;
    margin-top: 10px;
}
