/* Let's Go button improvements */
#start-now-btn a {
    display: inline-block;
    text-decoration: none;
    background: transparent !important;
    border: none !important;
    color: #333333 !important;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Smooth hover effect */
#start-now-btn a:hover {
    opacity: 0.8;
}

/* Pop-up Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.2); /* Increased transparency */
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    animation: fadeIn 0.3s ease-in-out;
}

/* Smooth fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -55%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Modal Title Styling */
.modal h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

/* Subtitle under title */
.modal p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Close button */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #777;
    transition: all 0.3s ease;
}

/* Close button hover effect */
.close:hover {
    color: #000;
    transform: scale(1.1);
}

/* Input Field Styling */
.modal input[type="email"], .modal input[type="text"] {
    width: calc(100% - 70px);
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease-in-out;
}

/* Input Field Focus Effect */
.modal input:focus {
    border-color: #A04E76; /* Dark mauve focus effect */
    box-shadow: 0 0 5px rgba(160, 78, 118, 0.3);
    outline: none;
}

/* Button Styling */
.modal button {
    width: 60px;
    height: 46px;
    background: #A04E76; /* Dark Mauve */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Change button text */
.modal button::after {
    content: "→"; /* Arrow instead of > */
    font-size: 18px;
}

/* Button Hover Effect */
.modal button:hover {
    background: #843d61; /* Slightly darker shade */
}

/* Red Border for Errors */
.input-error {
    border-color: #D9534F !important;
    animation: shake 0.3s ease-in-out;
}

/* Green Border for Success */
.input-success {
    border-color: #5CB85C !important;
}

/* Shake Animation for Error */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .modal {
        width: 90%;
        max-width: 350px;
    }
}

/* Set full-page background */
body {
    background: url('/wp-content/plugins/custom-login-flow/assets/Marketing-Agency-Hero-1.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #f1f1f1; /* Fallback color in case image fails to load */
}



