body {
    font-family: Gilroy, sans-serif!important;
    margin: 0;
    background-color: #000!important;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

main {
    height: 90vh;
}

#logo {
    height: 20vh;
}

#pills-tab {
    justify-content: center;
}

.nav-link {
    color: #fff!important;
    border: 1px solid rgba(0,0,0,0)!important;
}

.nav-link.active {
    background-color: rgba(0,0,0,0)!important;
    border: 1px dotted #fff!important;
}

.tab-pane {
    height: 90vh;
    padding-top: 30px;
}

#about-text {
    color: #fff;
}

#load-video-wrapper, #get-video-wrapper, #success-loading-wrapper, #content-wrapper {
    background-color: #000;
    color: #fff;
}

.container {
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
}

input[type="file"] {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
}

input[type="tel"], input[type="text"] {
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    background-color: #f5f5f5;
    box-shadow: inset 0 0 0 1px #ccc;
    transition: all 0.3s ease;
    outline: none;
}

input[type="tel"]:focus, input[type="text"]:focus {
    box-shadow: inset 0 0 0 2px #4A90E2;
    background-color: #fff;
}

.iti {
    color: #000;
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.flashes {
    list-style-type: none;
    padding: 0;
}
.flashes .error {
    color: red;
    background-color: #ffe0e0;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.flashes .success {
    color: green;
    background-color: #e0ffe0;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
strong {
    font-family: monospace;
    background-color: #eee;
    padding: 2px 5px;
    border-radius: 3px;
}

.centered-list {
    list-style-position: inside;
    text-align: center;
    padding-left: 0; /* Убираем отступ */
}

@media screen and (max-width: 600px) {
}