html {
    /*background-color: #e6e9e3;*/
    background-color: #f7ffff;
    font-family: Arial;
}

body {
    background-color: inherit;
}

.loadingIcon {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: fixed;
    top: calc((100% - 100px - 10px)/2);
    left: calc((100% - 100px)/2);
    background-color: #d9d9d9;
    background-image: linear-gradient(0deg, black 50%, transparent 50%), linear-gradient(90deg, transparent 50%, black 50%);
    animation: loading-animation 2s infinite;
    animation-timing-function: linear;
}

.loadingIcon > div {
    height: 76px;
    width: 76px;
    border-radius: 50%;
    background-color: #7f7f7f;
    margin-left: 12px;
    margin-top: 12px;
}

@keyframes loading-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.carousel-indicators {
    margin-bottom: -50px;
}

h3 {
    text-align: center;
    margin: 45px auto;
    font-weight: bold;
    width: 340px;
}

.customForm {
    width: 350px;
    height: 260px;
    display: block;
    margin: auto;
    padding: 15px;
    border: 8px solid whitesmoke;
    border-radius: 5px;
    background-color: #e3e3e3;
    box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.customForm table {
    width: 100%;
    border-collapse: collapse;
}

.customForm table > tbody > tr > td {
    padding: 10px 0;
    color: black;
}

.customForm table > tbody > tr > td > input {
    padding: 5px;
    border: 1px solid black;
    border-radius: 3px;
}

.customForm table > tbody > tr > td > button {
    float: right;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid black;
    cursor: pointer;
    color: black;
}
