.lcsl-container {
    .notice-container {
        display: flex;
        justify-content: center;
        width: 100%;

        .notice {
            align-content: center;
            min-width: 380px;
            margin: 40px 0;
            padding: 15px 25px;
            border: 2px orange solid;
            border-radius: 3px;
            background-color: rgba(255, 165, 0, 0.3);
            text-align: center;

            .value {
                color: rgba(21, 21, 21, 0.8);
                font-weight: 400;
                font-size: 14px;
                line-height: 20px;
            }

            .bold {
                font-weight: 600;
            }
        }
    }

    .form-holder {

        width: 420px;
        margin: 0 auto;
        padding: 105px 0 20px 0;

        h1 {
            display: block;
            margin: 0 0 30px 0;
            color: #333;
            font-weight: 600;
            font-size: 18px;
            line-height: 21px;
            text-align: center;
        }

        .sign-in {
            display: block;
            margin: 0 0 20px 0;
            padding: 30px 30px;
            border-radius: 2px;
            background: #fff;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);

            form {
                transition: all 0s, opacity 0.5s linear;

                .row {
                    position: relative;
                    margin: 0 0 20px 0;

                    .label {
                        display: block;
                        margin: 0 0 8px 0;
                        color: #444;
                        font-weight: 600;
                        font-size: 14px;
                        line-height: 18px;
                    }

                    .forgot {
                        display: block;
                        position: absolute;
                        top: 0;
                        right: 0;
                        font-weight: 600;
                        font-size: 13px;
                        line-height: 18px;
                        transition: all 0.1s ease-out;
                    }

                    &:last-child {
                        margin: 0 0 25px 0;
                    }
                }
            }
        }

        .request-account {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            line-height: 15px;

            .text {
                display: block;
                flex: 0 0 auto;
            }

            .link {
                display: block;
                flex: 0 0 auto;
                margin-left: 7px;
                padding: 3px 0;
                font-weight: 600;

                &:hover {
                    text-decoration: underline;
                }

            }
        }

    }
}

@media all and  (max-width: 800px) {
    .lcsl-container {
        .form-holder {
            padding-top: 80px;

            .request-account {
                display: block;

                .text {
                    margin-bottom: 2px;
                    text-align: center;
                }

                .link {
                    margin-left: 0;
                    text-align: center;
                }
            }
        }
    }
}

@media all and  (max-width: 600px) {
    .lcsl-container {

        .notice-container {
            padding: 0 15px;

            .notice {
                width: 100%;
                min-width: auto;
            }
        }

        .form-holder {
            width: 100%;
            padding: 75px 20px 15px 20px;

            h1 {
                margin-bottom: 25px;
            }

            .sign-in {
                margin-bottom: 25px;
                padding: 22px 17px 17px 17px;
            }
        }
    }
}

@media all and  (max-width: 350px) {
    .lcsl-container {
        .form-holder {
            .sign-in {
                .row > .forgot {
                    font-size: 12px;
                }
            }

        }
    }
}
