body {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #1c1c1c, #262626);
    color: #D7D7EF;
    font-family: "industry", sans-serif;
}

.container {
    max-width: 900px;
    border-radius: 10px;
    background: linear-gradient(145deg, #191919, #1e1e1e);
    box-shadow: 25px 25px 50px #111111,
        -25px -25px 50px #272727;
    padding: 31px;
}
#status{
    margin-top: 1em;
}
.file-drop-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    transition: 0.2s;
}

.choose-file-button {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.file-message {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;

}

.btn-ademotion {
    background-color: #D4202C;
    color: #fff;
}

.btn-ademotion:hover {
    border: 1px solid #D4202C;
}

.progress {
    background: linear-gradient(145deg, #191919, #1e1e1e);
    border: 1px solid #434343;
}

.adred {
    color: #D4202C;
}

.logo {
    width: 310px;
    margin-bottom: 2em;
}

h1 {
    margin-bottom: 1em;
}

.row {
    margin-bottom: 1em;
}

/* Hinzufügen der roten Hervorhebung für ungültige Eingaben */
.is-invalid {
    border-color: #dc3545 !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

/* Entfernen der roten Hervorhebung für gültige Eingaben */
.is-valid {
    border-color: #28a745 !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.progress{
    height: 25px;
}
.progress-bar {
    background: linear-gradient(to right, #d70f16, #820005);
    padding-left: 20px;
}
.form-floating>label{
    color: #aaaaaa;
}
.form-floating>.form-control, .form-floating>.form-control-plaintext, .form-floating>.form-select{
    height: 65px;
}
.form-control:focus{
    border-color: #d4202c33;
    box-shadow: 0 0 12px 0.25rem rgb(212 32 44 / 25%);
}