@font-face {
    font-family: 'FE-Font';
    src: url('/fonts/fe-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    font-size: 16px !important;
}

html,
body {
    margin: 0;
    padding: 0;
    font-size: 10px;
    box-sizing: border-box;
}

.damage-validation-message {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2.5rem;
}

.color-green {
    color: rgb(0, 255, 0);
}

.color-red {
    color: rgb(255, 0, 100);
}

.change-password__wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.password-forgotten__wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: stretch;
    padding: 2rem;
}

.password-changing__wrapper {
    background-color: rgb(220, 220, 220);
    width: 100%;
}

.to-driver-button {
    position: absolute;
    right: 11rem;
    top: 22rem;
    height: 4rem;
    width: 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
}

    .to-driver-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 1.2rem 0.2rem black;
    }

.add-person__button {
    background-color: rgb(150, 255, 0) !important;
}

.current-site-button {
    background-color: rgb(200, 200, 200) !important;
}

.nothing-there-yet {
    font-size: 2rem;
    color: rgb(255, 205, 60);
}

.main {
    padding: 2rem;
    overflow-y: auto;
    height: 100%;
}

    .main:has(.main--no-overflow) {
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

*,
*::before,
*::after {
    box-sizing: border-box;
}

.body {
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

button {
    outline: none;
    border: none;
}

@media(max-width: 600px) {
    .main {
        padding: 0;
    }
}
