#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255,0.75);
    z-index: 9999;
}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.loaded #preloader {
    display: none;
}

body {
    background: rgba(219, 104, 41, 1);
    background: radial-gradient(
        circle,
        rgba(255, 227, 115, 0.678) 0%,
        rgba(245, 131, 68, 1) 37%,
        rgba(219, 104, 41, 1) 100%
    );
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    flex-direction: column;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Readex Pro", sans-serif;
    flex-direction: column;
    opacity: 0;
    transition: 0.5s ease-in;
}

.content {
    width: 850px;
    height: 675px;
    display: flex;
    justify-content: center;
}

#image {
    position: absolute;
    z-index: -1000;
    width: 850px;
}

.form-content {
    direction: rtl;
    text-align: right;
    margin-top: 250px;
}

.form-group {
    margin-top: 10px;
    margin-bottom: 10px;
}
.inputText {
    border-radius: 10px;
    width: 275px;
    height: 40px;
    background-color: #cad9e5;
}

.inputText:focus {
    background-color: #cad9e5;
    box-shadow: none;
    border: none;
}

.inputText:not(:empty) {
    background-color: #cad9e5;
}

.form-check-input {
    margin-left: 10px;
}

.btn {
    background-color: #e06d2e;
    border: none;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:focus-visible {
    background-color: #2f4f59 !important;
    border: none !important;
}

.btn:focus,
.btn:active,
.btn:focus-visible {
    background-color: #0a1519 !important;
    border: none !important;
}

.inputCheck:checked {
    background-color: #e06d2e;
    border: none;
    box-shadow: none;
}

.inputCheck:focus {
    border: none;
    box-shadow: none;
}

.footer {
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}

.footer p {
  margin: 0;
}

/* Media queries for responsiveness */
@media screen and (max-width: 1400px) {
    .content {
        width: 700px;
        height: 675px;
        display: flex;
        justify-content: center;
    }

    #image {
        position: absolute;
        z-index: -1000;
        width: 700px;
    }

    .inputText {
      border-radius: 7.5px;
      width: 200px;
      height: 30px;
      background-color: #cad9e5;
    }
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .content {
      width: unset;
      height: 675px;
      display: flex;
      justify-content: center;
    }

    #image {
        position: absolute;
        z-index: -1000;
        width: 100%;
    }

    .inputText {
        border-radius: 7.5px;
        width: 100%;
        height: 30px;
        background-color: #cad9e5;
    }
}
