@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto';

    .bg_video {
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1000;
        background-size: cover;
    }

    .container {
        margin: auto;
        max-width: 1440px;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;

        .row {
            max-width: 420px;
            width: 80%;
            background-color: #FFF;
            margin-top: 60px;
            margin-bottom: 60px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0);
            background-color: rgba(255, 255, 255, 0.7);

            .content {
                padding: 20px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                .img {
                    width: 50%;
                }

                .alert {
                    width: 100%;
                    height: 50px;
                    background-color: red;
                    color: #FFF;
                    border-radius: 5px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-top: 10px;
                    margin-bottom: 10px;
                }

                .text {
                    font-size: 12px;
                    font-weight: bold;
                    margin-bottom: 20px;
                    text-align: center;
                }

                form {
                    width: 100%;

                    input {
                        height: 50px;
                        border-radius: 5px;
                        font-size: 16px;
                        border: 1px solid #E1E1E1;
                        padding-left: 10px;
                        width: 97%;
                        outline: none;
                    }

                    input:focus {
                        border-color: #A6EF02;
                    }

                    .pass {
                        position: relative;

                        .fas {
                            position: absolute;
                            top: 50%;
                            right: 5px;
                            cursor: pointer;
                        }
                    }

                    .cookies {
                        display: flex;
                        margin-top: 10px;
                        align-items: center;

                        #cookies {
                            width: 20px;
                            height: 20px;
                        }

                        label {
                            margin-left: 10px;
                        }
                    }

                    .btn {
                        width: 100%;
                        height: 60px;
                        border-radius: 5px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        text-decoration: none;
                        font-size: 18px;
                        margin-top: 10px;
                        color: #FFF;
                        font-weight: bold;
                        border: none;
                        margin-top: 20px;
                        cursor: pointer;
                    }

                    .btn-admin {
                        background-color: #5cb85c;
                    }

                    .btn-admin:hover {
                        background-color: #499D44;
                    }
                }

                .actions {
                    width: 100%;
                    display: flex;
                    padding: 15px 0;
                    justify-content: space-between;

                    a {
                        text-decoration: none;
                    }
                }
            }
        }
    }
}