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

* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    background-image: url(/img/ross-parmly-rf6ywHVkrlY-unsplash.jpg);
    background-size: cover;
    background-position: left;
}
nav{
    border-bottom:1px solid rgba(211, 211, 211, 0.750);
    box-shadow: 2px 2px 5px;
}
nav img	{
    max-width: 200px;
    max-height: 72px;
}
div.container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
div.form-container {
    position: absolute;
    top: 5rem;
    background: rgba(255, 255, 255, 0.650);
    min-width: 320px;
    max-width: 320px;
    min-height: 40vh;
    padding: 2rem;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

div.form-container h2 {
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    cursor: default;
}

    div.form-container h2::before {
        content: '';
        position: absolute;
        height: 4px;
        width: 25px;
        bottom: 3px;
        left: 0;
        border-radius: 8px;
        background: linear-gradient(45deg, #1e3c72, #2a5298);
        cursor: default;
    }

form {
    display: flex;
    flex-direction: column;
}

.input-field {
    position: relative;
    background-color: rgba(0, 0, 0, 0);
}

form .input-field:first-child {
    margin-bottom: 1.5rem;
}

.input-field .underline::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
}

.input-field .underline::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    transform: scaleX(0);
    transition: all .3s ease-in-out;
    transform-origin: left;
}

.input-field input:focus ~ .underline::after {
    transform: scaleX(1);
}

.input-field input {
    outline: none;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
}

.input-field input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

form input[type="submit"] {
    margin-top: 2rem;
    padding: 0.4rem;
    width: 100%;
    background: linear-gradient(to left, #1e3c72, #2a5298);
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
    font-weight: 300;
    border-radius: 4px;
    transition: all 0.3s ease;
}

form input[type="submit"]:hover {
    letter-spacing: 0.5px;
}

.footer {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.footer a    {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.8rem;
    text-align: center;
}


