/* Login Modal Styles - Full Screen */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        #c5a732 0%,
        #d4b73a 50%,
        #c5a732 100%
    );
    z-index: 10002;
    overflow-y: auto;
}

.login-modal-content {
    background: transparent;
    border-radius: 0;
    padding: 80px 60px 60px 60px;
    width: 100vw;
    min-height: 100vh;
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: none;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-close {
    position: fixed;
    top: 20px;
    right: 30px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10003;
}

.login-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.login-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    margin-top: 80px;
    line-height: 1.1;
}

.login-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.google-login-btn {
    max-width: 400px;
    width: 100%;
    background: white;
    color: #333;
    padding: 20px 24px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-login-btn:hover {
    background: #f9f9f9;
    border-color: #bbb;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
    color: #666;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(102, 102, 102, 0.3);
}

.login-divider span {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.login-email-input {
    max-width: 400px;
    width: 100%;
    padding: 20px 24px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 18px;
    margin-bottom: 25px;
    outline: none;
    transition: border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-email-input:focus {
    border-color: #c5a732;
}

.login-email-input::placeholder {
    color: #999;
}

.login-submit-btn {
    max-width: 400px;
    width: 100%;
    background: #000000;
    color: white;
    padding: 20px 24px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.login-submit-btn:hover {
    background: #333333;
}

.login-disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
}

/* Mobile responsiveness for login modal */
@media (max-width: 768px) {
    .login-modal-content {
        padding: 40px 20px 30px 20px;
        margin: 0;
    }

    .login-title {
        font-size: 36px;
    }

    .login-close {
        top: 15px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .login-modal-content {
        padding: 30px 15px 20px 15px;
    }

    .login-title {
        font-size: 28px;
    }
}
