/* form-style.css */

body {
    background-color: #000000;
    font-family: 'Noto Sans', Arial, serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
}

.form-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: #cccccc;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

form.bg-dark {
    background-color: #1c1c1c;
    border-radius: 10px;
    padding: 2rem;
    color: #ffffff;
    font-family: 'Noto Sans', Arial, sans-serif;
}

form h2 {
    font-family: 'Klavika', Arial, serif;
    font-size: 35px;
}

form h5 {
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: 18px;
}

form label {
    color: #cccccc;
    font-size: 13px;
}

form .form-control {
    background-color: #1c1c1c;
    border: 1px solid #444;
    color: #ffffff;
    font-size: 13px;
    border-radius: 4px;
    padding: 6px 10px;
    height: calc(2.5em + .75rem + 2px);
}

form .form-control:focus {
    border-color: #00b0b9;
    box-shadow: none;
    background-color: #222;
    color: #ffffff;
}

form .btn-teal {
    background-color: #008080;
    color: #ffffff;
    border: none;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    width: 50%;
    border-radius: 4px;
}

form .btn-teal:hover {
    background-color: #00b0b9;
    color: #ffffff;
}

form .form-check-label {
    font-size: 13px;
    color: #cccccc;
}

form .form-check-label a {
    color: #00b0b9;
    text-decoration: underline;
}

hr {
    border-top: 1px solid #2c2c2c;
    margin: 1.5rem 0;
}

.epyc-form-section {
    text-align: left;
    padding: 45px 15px;
    background-color: #000;
}

.epyc-form-wrapper form {
    width: 100%;
}

form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

form .form-group {
    flex: 1;
    min-width: 48%;
}

form .form-check {
    margin-bottom: 10px;
}

form .form-check input {
    margin-right: 8px;
}

form button[type="submit"] {
    margin-top: 20px;
    background-color: #008080;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

form button[type="submit"]:hover {
    background-color: #00b0b9;
}

.modal-content.bg-black {
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    border: none;
}

.modal-content button {
    border-radius: 4px;
    border: 1px solid #fff;
}

.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent dark overlay */
    backdrop-filter: blur(8px);
    /* Adds the blur effect */
    -webkit-backdrop-filter: blur(8px);
    /* Safari support */
}

/* Modal adjustments */
#successModal .modal-dialog {
    max-width: 500px;
}

#successModal .modal-body {
    font-size: 1.1rem;
    padding: 2rem;
}

/* Optional: smooth animation */
#successModal .modal-content {
    animation: fadeIn 0.3s ease-in-out;
}



@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}