﻿body {
    background: #fff9f1;
}

h1 {
    text-align: center;
    font-size: x-large;
    font-weight: bold;
}

body > section > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max(25%,400px);
    background: white;
    padding: 80px 0;
    outline: 1px solid var(--green);
    box-shadow: 1px 1px 16px 7px var(--light-green);
}

    body > section > div > img {
        margin: 0 auto 40px auto;
        width: 100%;
        display: flex;
    }

    body > section > div > form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 20px 70px;
    }

        body > section > div > form > label {
            display: block;
            width: 100%;
            padding-top: 5px;
        }

        body > section > div > form > input, body > section > div > form > div > input {
            width: 100%;
            border: 0;
            outline: 1px solid var(--green);
            padding: 5px 15px;
            position: relative;
        }

        body > section > div > form > div {
            position: relative;
            width: 100%;
        }

            body > section > div > form > div > i {
                position: absolute;
                bottom: 3px;
                right: 3px;
            }

        body > section > div > form > span {
            padding: 15px;
        }

            body > section > div > form > span > a {
                color: var(--green);
            }

            body > section > div > form > span > b {
                font-size: 14px;
                font-weight: 400;
                color: var(--green);
            }

.btn {
    cursor: pointer;
    transition: 300ms;
}

    .btn:hover {
        color: white;
        background-color: var(--green);
    }

#showPass {
    cursor: pointer;
}

@media (max-width: 480px) {
    body > section > div {
        width: 90%;
    }

        body > section > div > form {
            padding: 20px 10px;
        }
}
