* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.error {
    color: red;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
    text-align: center;
}

body {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

.login-form {
    height: 200px;
    width: 300px;
    border-bottom: 1px solid #0066cc;
    border-top: 1px solid #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
svg {
    width: 28px;
    height: 37px;
    margin-bottom: 15px;
}

.ico {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 5px;
    margin-bottom: 15px;
    font-family: 'Mulish', sans-serif;
}

.infa {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.infa h1 {
    font-family: 'Mulish', sans-serif;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
}

.infa p {
    font-family: 'Mulish', sans-serif;
    color: #000;
    font-size: 15px;
    font-style: italic;
    font-weight: 100;
    line-height: normal;
    margin-top: 0px;
}
input {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    border: 1px solid #0066cc;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
.btn {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spin buttons in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}