* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

body {
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    height: var(--dynamic-height);
    justify-content: center;
    align-items: center;
}

.login-container {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 22vw;
    text-align: center;
}

span {
   
    font-size:1vw;
    font-weight:bold;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    display:block;
    text-align: left;
    margin: 5px 0;
}

input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width:100%;
}

button {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 10px !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
}

button:hover {
    background: var(--third-color);
    color: var(--primary-color);
    font-weight: bold;
}

.buttonHover {
    background: var(--third-color) !important;
    color: var(--primary-color) !important;
    font-weight: bold !important;
}
#div_warning {
    display: none;
    font-weight: 600;
    text-align: center;
    font-size: 15px;
    width: 100%;
    height: 2vh;
    color: #d8000c;
}