* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

body {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-image: url("/dist/img/flowtrip-bg.jpeg");
}

.login {
    position: absolute;
    inset: 0;
    margin: auto;

    width: 400px;
    height: 375px;
    background-color: #eee;
    border-radius: 10px;

    padding: 20px;
    z-index: 0;
}

.login.password-reset {
    height: 275px;
}

.login.password-reset-summary {
    height: 425px;
}

.login.welcome {
    height: 400px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.header img {
    height: 64px;
}

.content {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content .input-group {
    width: 100%;
    margin-top: 10px;
}

.content .input-group label {
    margin: 5px;
}

input {
    width: 100%;
    height: 42px;
    font-size: 16px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin-top: 5px;
}

.button {
    width: 100%;
    height: 48px;
    margin-top: 15px;
    
    background-color: #FFE802;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: bold;
    font-size: 20px;

    transition: all 0.25s ease;
}

.option {
    text-decoration: none;
    margin-left: 5px;
    font-size: 16px;
    color: #430098;
}

.button:hover {
    background-color: #000;
    color: #fff;
}

.modal {
    position: absolute;
    inset: 0;
    margin: auto;

    width: 500px;
    height: 195px;
    background-color: #eee;
    padding: 10px;
    border-radius: 10px;
}
 
.modal input {
    text-align: center;
}


@media only screen and (max-width: 500px) {
    .login {
        width: 90%;
    }

    .header img {
        scale: 0.75;
    }
}