﻿body  {
    background: #f1f8ff;
}

    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: 5px solid #ecf1f6;
        border-radius: 15px;
        box-shadow: 1px 1px 16px 7px #a6a6a6c7;
    }

        body > section > div > img {
            margin: 0 auto 40px auto;
            width: 250px;
            display: flex;
        }

        body > section > div > form {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            padding: 0 70px;
        }

            body > section > div > form > label {
                display: block;
                width: 100%;
                color: var(--sal-dark-blue);
                padding-top: 5px;
            }

            body > section > div > form > input, body > section > div > form > div > input {
                width: 100%;
                border: 0;
                outline: 1px solid var(--sal-dark-blue);
                border-radius: 15px;
                padding: 5px 15px;
                position: relative;
            }

            body > section > div > form > div {
                position: relative;
                width: 100%;
            }

                body > section > div > form > div > i {
                    position: absolute;
                    right: 10px;
                    top: 32px;
                }

            body > section > div > form > span {
                padding: 15px;
            }

                body > section > div > form > span > a {
                    color: var(--sal-yellow);
                }

                body > section > div > form > span > b {
                    font-size: 14px;
                    font-weight: 400;
                    color: var(--sal-dark-blue);
                }


.salBtn {
    width: 60%;
    color: white;
    background: var(--sal-blue);
}
