* {
    margin: 0;
    padding: 0;
    background: white;
    text-decoration: none;
    box-sizing: border-box;
}

.error404__container {
    display: flex;
    width: 100%;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.login__form {
    border: 2px solid #ccc;
    border-radius: 10px;
    width: 300px;
    padding: 15px;
    margin: 0 auto;
    display: block;
}

.login__form .form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.users-table,
.releases-table {
    border: 2px solid #ccc;
    width: 100%;
    padding: 15px;
    border-radius: 15px;
}

.delete-user {
    color: red;
    cursor: pointer;
}

.custom-row {
    display: flex;
    margin-top: 100px;
    align-items: center;
}

.custom-row .add-user {
    margin-left: 20px;
}

.add-user-form {
    display: none;
}

.add-user-form.active {
    display: flex;
}

.add-user-form>* {
    width: 150px;
    margin: 10px;
    margin-left: 0;
}

.add-user-error {
    color: red;
}

.releases-table input[type="text"] {
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 5px;
}

.btn-custom-group .btn {
    margin: 10px 15px;
}

.setting-name {
    font-weight: 700;
}

.urls input {
    border: 1px solid #ccc;
}

.urls>.row {
    margin-bottom: 10px;
}

.proxy-input,
.delay-input {
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.confirm-popup {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
}

.popup-content {
    background: white;
    padding: 20px;
}

.confirm-popup .btn {
    width: 100%;
}

.setting-name {
    margin-top: 20px;
    display: block;
}

.settings-button-row {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 100px;
}

.settings-button-row * {
    margin-right: 10px;
    margin-bottom: 0;
}

#txt-download {
    display: none;
}

.logs {
    background: rgb(19, 19, 19);
    padding: 20px;
    height: 500px;
    overflow-y: scroll;
}

.log {
    color: white;
    display: block;
    background: rgb(19, 19, 19);
}