﻿

.container-login {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    height: 100vh;


    > .login-left{
        background-color: #21409A;
        width: 50%;
        height: 100%;
        align-items: center;
        justify-content: center;
        display: flex
;
    }

    > .login-right {
        background-color: #fff;
        width: 50%;
        height: 100%;

        > .container-form-login {
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 100%;
            padding: 20px;
            align-items: center;
            justify-content: center;

            > .login-icon{
                width:100%;
                align-items:center;
                justify-content:center;
                display:flex;
                > img {
                    width: 330px;
                }
              }


            > .form-container-login {
                display: flex;
                flex-direction: column;
                width: 350px;
                height: 350px;
                margin-top:15px;
                justify-content: space-around;


                > .form-group {
                    > input {
                       border-radius:5px;
                      }
                   }

                > .recovery-password
                    {
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        > a > p {
                                color:#000;
                                text-decoration:underline;
                                margin:0;
                                font-size:14px;
                            }
                    } 
                           
                > .container-btn-login
                    {
                        > input
                            {
                                background-color: #21409A;
                                width: 100%;
                                border-radius: 5px;
                                padding: 10px;
                                font-size: 16px;
                                border: 0px;
                                color:#fff;
                            }
                    }

                > .container-create-account {
                    width: 100%;
                    display: flex;
                    flex-direction: row;
                    align-items:center;
                    justify-content:center;

                    > p {
                            margin:0;
                            color:#000;
                            font-size: 14px;
                            margin-right: 5px;
                            cursor: pointer;
                        }

                    > p:nth-child(2){
                        font-weight:600;
                    }

                }


                .container-social {
                    display:flex;
                    align-items:center;
                    width:100%;
                    justify-content:center;
                    flex-direction:column;

                    > p{
                           font-size: 14px;
                           color:#000;
                           margin:0;
                       }

                    > div {
                        display:flex;
                        flex-direction:row;
                        align-items:center;
                        justify-content:space-around;
                        margin-top:10px;

                        > img {
                                  margin-right:20px;
                                  width:15px;
                                  cursor:pointer;
                              }
                    }


                }
        
            }

        }
    }

@media screen and (max-width: 1380px) {
    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
    }
}
}



.carousel {
    position: relative;
    width: 800px;
    max-width: 90%;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    > .container-info-carousel{ 
        width: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        overflow: unset;

        > label
{
    background-color: #FDB525;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 2px 20px;
    border-radius: 20px;
    font-size: 18px;
}

        > h2
        {
            color: #fff;
            font-weight: 900;
            text-align: left;
            font-size: 36px;
        }
        > p {
            color: #A5B4D6;
            font-size: 16px;
            text-align:left;
}
}

}

    .carousel-slide img {
        width: 500px;
        border-radius: 12px;
    }

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color:transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.indicators {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
}

    .dot.active {
        background: white;
    }


