:root {
    --primary-color: #fec35a;
    --secondary-color: #403117;
    --error-color: #dc3545;
}

* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.not-found-container {
    background-color: var(--secondary-color);
}

.logo {
    width: 150px;
    height: auto;
}

.title {
    color: var(--primary-color);
    margin: 0;
    text-align: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 25px;
}

input {
    outline: none;
    border: 0;
    padding: 15px;
    border-radius: 5px;
    background-color: #4031173b;
    width: 350px;
    transition: all .2s linear;
}

input:focus {
    box-shadow: 2px 2px 8px 1px var(--secondary-color);
}

input label {
    color: var(--secondary-color);
}

.btn {
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    border: 0;
}

.login-btn {
    padding: 10px 20px;
    width: 350px;
    margin-top: 15px;
}

.v-btn {
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;
}

.v-btn:hover {
    box-shadow: 2px 2px 4px 1px var(--primary-color);
}

.warning-text {
    margin: 0;
    color: var(--error-color);
}

.btn-group {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.text-not-found {
    font-size: 400%;
    font-weight: 900;
    color: white;
}