﻿@import url('https://www.w3schools.com/w3css/4/w3.css');
@import url('https://fonts.googleapis.com/css?family=Rubik');

body {
    font-family: 'Rubik';
    font-weight: 400;
}

h1, h2 {
    font-family: "Segoe UI", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem !important;
    font-weight: 500;
    color: gray;
    margin-bottom: 3rem
}

main {
    width: 95%;
    height: 80vh;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

input {
    height: 47.94px;
}

.btn {
    cursor: pointer;
    font-weight: 600;
    font-family: "Segoe UI", Arial, sans-serif;
    color: white;
}

.btn-blue {
    background-color: #1D3557;
}

    .btn-blue:hover {
        background-color: #132947;
    }

.btn-red {
    background-color: #E63946;
}

    .btn-red:hover {
        background-color: #b32b35;
    }

.required {
    color: red;
}



@media (min-width: 1000px ) {
    main {
        width: 80%;
    }

    h1 {
        margin-bottom: 3em
    }

    form {
        justify-content: flex-start;
    }
}
