@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Light.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Bold.woff2) format('woff2');
}

body {
    color: #f2f2f2;
    font-family: "Roboto Condensed", Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
}

h1, h2 {
    text-align: center;
    color: #fff;
}

.section {
    margin-bottom: 20px;
    border: 1px solid rgb(61, 75, 39);
    border-radius: 2px;
    padding: 10px;
    background-color: rgba(32, 36, 32, 0.95) !important;
}

.section h2 {
    margin-top: 0;
    font-size: 18px;
    padding: 10px;
    border-bottom: 1px solid rgb(173, 168, 162);
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(61, 75, 39);
    border-radius: 2px;
    font-size: 14px;
    background: #444;
    color: #fff;
}

.form-description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
}

.btn {
    transition: background 0.2s ease;
    border-radius: 0;
    border: 0;
    padding: 8px 14px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    margin-top: 5px;
}

.btn.btn-primary {
    background: rgb(61, 75, 39);
    color: rgb(166, 205, 99);
}

.btn.btn-primary:hover {
    background: rgb(88, 108, 57);
}

.btn.btn-secondary {
    background: rgb(29, 66, 95);
    color: rgb(72, 154, 212);
}

.btn.btn-secondary:hover {
    background: rgb(39, 85, 121);
}

.btn.btn-disabled {
    background: rgb(89, 85, 82);
    color: rgb(204, 195, 190);
}

.btn.btn-disabled:hover {
    background: rgb(111, 107, 103);
}

.btn.btn-danger {
    background: rgb(150, 47, 32);
    color: rgb(199, 152, 151);
}

.btn.btn-danger:hover {
    background: rgb(172, 56, 39);
}

.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.alert-success {
    background-color: rgb(61, 75, 39);
    color:#fff;
}

.alert-danger {
    background-color: rgb(172, 56, 39);
    color:#fff;
}

.fade-out {
    opacity: 0;
}




