:root {
    --LIGHT_BLUE: #5CC2CB;
    --LIGHT_BLUE_TRANSPARANT: rgba(92, 194, 203, 0.90);;
    --DARK_BLUE: #2e728b;
    --ORANGE: #f28016;
    --LIGHT_ORANGE: #fdead8;
}

@font-face {
    font-family: "Roboto Slab";
    src: url(../fonts/roboto-slab-v25-latin-500.ttf)
}

#background-image {
    background-image: url('../images/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#background-image-color-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--LIGHT_BLUE_TRANSPARANT);
    top: 0;
    left: 0;
}

#content {
    position: relative;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

p {
    max-width: 75ch;
}

.background-color-overlay {
    height: 100vh;
    width: 100vw;
    background: var(--LIGHT_BLUE_TRANSPARANT);
}

.title-wrapper {
    margin-bottom: 20px;
    width: 350px;
}

.title {
    margin: 0;
    font-size: 20px;
    font-family: "Roboto Slab", serif;
    color: var(--DARK_BLUE);
}

.title::before {
    content: ' ';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--DARK_BLUE);
}

.input, .button--primary {
    height: 40px;
    min-height: 40px;
    width: 350px;
    border-radius: 7px;
}

.input {
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    border: 1px solid lightgray;
    padding: 0 15px;
    margin-bottom: 10px;
    display: block;
}

.button {
    border: none;
}

.button--primary {
    background-color: var(--ORANGE);
    color: white;
    font-size: 16px;
}

.button--secondary {
    font-weight: bold;
    height: 25px;
    width: 110px;
    background-color: lightgray;
    font-size: 10px;
    border-radius: 5px;
}

.button:hover {
    transform: scale(1.05);
}

:focus {
    outline: 2px solid var(--DARK_BLUE);
}

::placeholder {
    color: lightgray;
}

.form-notification {
    display: flex;
    justify-content: start;
    align-items: start;

    width: 300px;
    align-content: start;
    font-size: 12px;
    margin: 20px 0;
}


.form-notification__status {
    color: var(--LIGHT_BLUE);
}

.form-notification__error {
    color: var(--LIGHT_BLUE);
}

.text--white {
    color: white;
}

.text--bold {
    font-weight: bold;
}

.is-invalid {
    border-color: red;
}