*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
html {
    color: #333;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

body{
    height: 100vh;
    background-image: url("../../img/bg-front.png");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
}
.alert-danger{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 2rem !important;
    font-size: 0.85rem !important;
}

#container{
    width: 60%;
    max-height: 95%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5.5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.content{
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container__left,
.container__right{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container__left img{
    width: 100%;
}
.container__left{
    flex: 0 56%;
}
.container__right{
    flex: 1;
    height: 90%;
    padding: 1.5rem 1rem;
    border: 2px solid #4b668e;
    border-radius: 10px;
    color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;

}
.mobil-logo{
    display: none;
}

.form-input{
    width: 100%;
    padding: 5px;
    display: block;
    outline: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 3px;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
}

.form-label{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: 1px;
}
.remember-me{
    font-size: 0.8rem;
    margin:0;;
    padding: 0;
}
.label-location {
    top: 0;
    transform: translateY(-100%);
}
.login-form{
    margin-top: 4rem;

}
.text-shadow{
    text-shadow: 2px 2px 1px rgba(0,0,0,0.4)
}
.forgot-password{
    position: absolute;
    right: 10px;
    top: -25px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}
.forgot-password:hover{
    text-decoration: underline;
}
p{
    margin-bottom: 0;
}
.form-footer{
    margin-top: 2rem;
}

.form-footer__text{
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.95rem;
}
.icon-container{
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: all 0.2s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-container svg{
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.4s ease;;
}
.icon-container:hover svg{
    transform: rotateX(360deg);
}
.password-icon{
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}
input[type="password"]{
    padding-right: 25px;
}

/*Sorgular */
@media only screen and (min-width:1441px){
    html{
        font-size: 19px
    }

    .icon-container{
        width: 40px;
        height: 40px;
    }
}


@media only screen and (min-width: 1700px ) {
    #container{
        max-width: 60%;
    }
    .container__left{
        flex: 0 50%;
    }
}
@media only screen and (min-width: 1920px ) {
    #container{
        max-width: 50%;
    }
}


@media only screen and (max-width:1440px){
    #container{
        padding: 2rem 1.5rem;
    }
    .remember-me{
        top: 44.5%;
    }
}

@media only screen and (max-width:1250px){
    html{
        font-size: 14px !important;
    }
    .form-footer__text{
        font-size: 0.85rem;
    }
    #container{
        width: 40%;
    }
    .container__left{
        display: none;
    }
    .mobil-logo{
        display: block;
    }
}

@media only screen and (max-width:992px){
    #container{
        width: 45%;
    }

    .container__right{
        flex: 1;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
}
@media only screen and (max-width:768px){
    #container{
        width: 65%;
    }
}

@media only screen and (max-width:576px){
    html{
        font-size: 12px;
    }
    #container{
        width: 75%;
    }
    .px-3{
        padding-left:1rem !important;
        padding-right: 1rem !important;
    }
    .login-form{
        margin-top: 5rem;
    }
    label{
        font-size: 0.9rem;
    }

}

@media only screen and (max-width:480px){
    #container{
        width: 95%;
    }
    .px-3{
        padding-left:1rem !important;
        padding-right: 1rem !important;
    }
    .icon-container{
        width: 25px;
        height: 25px;
    }
    .icon-container svg{
        font-size: 0.85rem;
    }
}

@media only screen and (max-width:374px){
    html{
        font-size: 11px;
    }
    .login-form.px-4{
        padding-right: 0rem !important;
        padding-left: 0rem !important
    }

   #container{
       padding: 1.5rem 0.9rem;
   }
   .alert-danger{
    font-size: 0.7rem !important;
   }

}

@media only screen and (max-width:350px){
    #container{
        box-shadow: none;
        background-color: transparent;
    }
}

