@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

header {
    background-color: #00237e;
    text-align: center;
    display: flex;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

header div {
    flex: 1;
}

.title {
    align-self: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
}

header div div {
    padding: 16px;
    display: table;
}

header div div span {
    display: table-cell;
    vertical-align: middle;
    color: white;
    font-weight: 500;
    font-size: 20px;
}

.form {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    margin-top: 16px;
    border: 1px black solid;
    border-radius: 10px;
}

.absolute-center {
    position: absolute;
    top: 35%;
    width: 100%;
}

.red-icon {
    color: red;
    font-size: 160px;
}

.green-icon {
    color: green;
    font-size: 160px;
}

.div-icon-padding {
    margin: 16px;
}