
body {
    /*background-image: url('https://images7.alphacoders.com/637/637789.jpg');*/
    background-image: url(https://images7.alphacoders.com/637/637789.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#main-content {
    background-color: #483a6d;
    color: white;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px;
}

#root-body {
    padding: 0px;
    border: solid 1px #fce8e8;
    border-radius: 8px;
    background-color: rgba(28, 0, 155, 0.61);
}

.button-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px;
}

.cool-button {
    background: linear-gradient(145deg, #ae00ff, #ff4b2b);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cool-button:hover {
    transform: scale(1.2);
}

.cool-button:active {
    transform: scale(0.98);
}

.cool-button:disabled,
.cool-button.disabled {
    background: #888;
    color: #ccc;
    border-color: #aaa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
    font-size: 18px;
}

.loader {
    display: inline-flex;
    gap: 5px;
}

.loader:before,
.loader:after {
    content: "";
    height: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        linear-gradient(#222 0 0) top/100% 40% no-repeat,
        radial-gradient(farthest-side, #000, #9c292900) 350%/18px 18px no-repeat #fff;
    animation: l7 1.5s infinite alternate ease-in;
}

@keyframes l7 {
    0%,
    70% {
        background-size: 100% 40%, 18px 18px;
    }
    85% {
        background-size: 100% 120%, 18px 18px;
    }
    100% {
        background-color: red;
        background-size: 100% 40%, 18px 18px;
    }
}

.form-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    padding: 30px 25px;
    border-radius: 15px;
    background: linear-gradient(to bottom right, #ffe0f7, #f7ccff);
    box-shadow: 0 10px 20px #00000026;
    text-align: center;
    animation: fadeIn .5s ease;
    border: 3px solid #ffffff;
}

.form-wrapper h2 {
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0px 0px 20px #007cff;
}

.form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-wrapper form input,
.form-wrapper form select {
    padding: 12px;
    border: none;
    border-radius: 8px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
    appearance: none;
}

.form-wrapper form select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #cc66ff;
}

.form-wrapper form button {
    padding: 12px;
    background: linear-gradient(to right, #9d00ff, #f09);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: .3s;
}

.form-wrapper form button:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    border-radius: 16px;
    background: linear-gradient(145deg, #000000, #0147b8);
    color: #eeeeee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}
