:root {
    --error-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("calendar_blur.jpg");
    background-position: center center;
    background-size: cover;
			 
}

h1 {
    color: #DBCFB3;
}

.formContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    height: 80vh;
    width: 25vw;
}

input {
    margin-bottom: 5pix;
    border-right: none;
    border-top: none;
    border-left: none;
    background-color:transparent;
    outline: none;
    color: white;
    caret-color: white;
}

small {
    margin-bottom: 5vh;
    align-items: center;
}

input[type=text]::placeholder {
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
}

input[type=submit] {
    background: rgba(255,255,255,.2);
    width: 100%;
    padding: 2vh;
    border: none;
    cursor: pointer;
    border-radius: 4px 4px;
}


.form-field.error input {
    border-color: var(--error-color);
}

.form-field.success input {
    border-color: var(--success-color);
}

