* {
    font-family: 'Helvetica', 'Arial';
    margin: 0;
    padding: 0;
}

/* Chrome, Safari, Edge için */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox için */
input[type="number"] {
    -moz-appearance: textfield;
}

body {
    font-family: 'Fira Sans', sans-serif;
    background-color: #303030;
    background-attachment: fixed;
    background-size: cover;
    background-image: url('../logo.jpg');
    background-position: center;
}

.app {
    height: 100%;
    width: 100%;
}

.content-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
    flex-direction: column;
}

.user-form {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 382px;
    overflow: hidden;
    padding: 40px;
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
}

.form-self {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

h2 {
    text-align: center;
    color: #212121;
    padding: 20px;
}

label {
    color: #212121;
    font-size: 17px;
}

.input {
    width: 300px;
    min-height: 36px;
    border: none;
    border-radius: 5px;
    padding: 12px;
    background-color: #e5e5e5;
    margin-top: 10px;
    font-size: 16px;
}


.button {
    width: 300px;
    background-color: #008CBA;
    /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 10px;
}

.button:hover {
    background-color: #007196;
}


span {
    color: white;
    font-size: 17px;
}

a {
    float: right;
    background-color: grey;
}

.captcha {
    margin: 15px 0;
}
.wrap-loader{

}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #cc3d04;
    width: 70px;
    height: 70px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite; 
    z-index: 10002;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.error {
    background-color: #FF4B2B;
    padding: 10px;
    margin-top: 10px;
    color: white;
    width: 100%;
    text-align: center;
}

.toaster {
    position: fixed;
    bottom: 10px;
    left: 0;
    padding: 15px;
    max-width: 250px;
    color: red;
    border-radius: 0 15px 15px 0;
    background: rgba(255, 255, 255, 1);
    word-wrap: break-word;
    z-index: 1001;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    padding: 40px;
    width: 350px;
}

.modal-content b {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.state {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input-group {
    display: flex;
    align-items: center;
}

.modal button {
    padding: 10px 32px;
    width: 100%;
}

.modal input {
    margin: 0;
    padding: 4px;
}

.timer {
    padding: 4px;
}