:root {
    --primary: #FF6F3C;
    --primary-alt: #FF3E6C;
    --accent: #4EE1C9;
    --secondary: #FFC857;
    --color-bg: #F5F5F5;
    --color-text: #2B2B2B;
    --color-on-primary: white;
    --neutral1: #D1D1D1;
    --neutral2: #A7F0E6;
    --error: #B00020;
    --color-on-error: white;

    --default-height: 45px;
}

body {
    color: var(--color-text);
    background-color: var(--color-bg);

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

input[type=text], input[type=email], input[type=password] {
    background-color: var(--color-bg);
    border-radius: 5px;
    border: 1px solid var(--neutral1);
    height: var(--default-height);
    color: var(--color-text);
    padding-left: 15px;
    font-size: 17px;
}

.button-primary {
    background-color: var(--primary);
    width: 100%;
    border-radius: 5px;
    height: var(--default-height);
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-on-primary);
    cursor: pointer;
}

.button-primary-alt {
    background-color: var(--color-bg);
    border: 1px solid var(--primary-alt);
    width: 100%;
    border-radius: 5px;
    height: var(--default-height);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-alt);
    cursor: pointer;
}

.title {
    text-align: left;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 5vh;
}

.sub-title {
    text-align: left;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 3vh;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 2vh;
    font-size: 18px;
}

.error-box {
    background: var(--error);
    color: var(--color-on-error);
    border-radius: 5px;
    padding: 10px;
    font-size: 17px;
    font-weight: 500;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}