section {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;

    div.section {
        position: relative;
        height: 100%;
    }

    div.section:nth-child(1) {
        width: 40%;
        background: rgb(21,44,65);
	    background: linear-gradient(90deg, rgba(21,44,65,1) 0%, rgba(14,59,99,1) 50%, rgba(1,63,119,1) 100%);

        padding: 2em;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1em;

        img {
            position: relative;
            height: 5em;
        }

        h1 {
            width: 100%;
            text-align: center;
            color:  white;
            font-size: 2.5em;
            margin: 0;
        }

        p {
            margin: 0;
            width: 100%;
            font-size: 1em;
            text-align: center;
            color: white;
        }
    }

    div.section:nth-child(2) {
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2em;

        div.form-login {
            position: relative;
            width: 300px;
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 1em;
            color: rgba(0, 45, 85, 1);

            h1 {
                width: 100%;
                text-align: center;
                margin: 0;
                font-size: 2.5em;
            }

            div {
                position: relative;
                width: 100%;
                display: flex;
                align-items: center;
                gap: .5em;
                padding: .5em 1em;
                background-color: rgba(0, 45, 85, .3);
                border-radius: .5em;

                input {
                    position: relative;
                    font-size: 1em;
                    box-shadow: 0 0 0 0;
                    outline: 0;
                    border: none;
                    color: rgba(0, 45, 85, 1);
                    width: 100%;
                    background-color: transparent;
                }

                input::placeholder, input[type=password]::placeholder {
                    color: rgba(0, 45, 85, .7);
                    font-size: .9em;
                    transition: 0.3s;
                }

                input:focus::placeholder {
                    color: rgba(0, 45, 85, .2);
                }
            }

            div.forgot-password {
                padding: 0;
                justify-content: end;
                background-color: transparent;

                a {
                    text-decoration: none;
                    color: rgba(0, 45, 85, 1);
                    font-size: .9em;
                }
            }

            button {
                background-color: rgba(0, 45, 85, 1);
                color: white;
                padding: .4em 2em;
                border-radius: 1em;
                cursor: pointer;
            }
        }
    }
}

@media screen and (max-device-width: 480px) {
    section {
        flex-direction: column;

        div.section:nth-child(1) {
            width: 100%;
            background: rgb(21,44,65);
	        background: linear-gradient(180deg, rgba(21,44,65,1) 0%, rgba(14,59,99,1) 50%, rgba(1,63,119,1) 100%);
        }

        div.section:nth-child(2) {
            width: 100%;
            background: rgb(21,44,65);
	        background: linear-gradient(0deg, rgba(21,44,65,1) 0%, rgba(14,59,99,1) 50%, rgba(1,63,119,1) 100%);
            
            div.form-login {
                width: 90%;
                
                h1 {
                    color: white;
                }

                div {
                    background-color: white;
                }

                div.forgot-password {
                    a {
                        color: white;
                    }
                }

                button {
                    width: 90%;
                    background-color: white;
                    color: rgba(0, 45, 85, 1);
                }
            }
        }
    }
}