@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    outline: none;
    border: none;
    text-decoration: none;
}
#page_login{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #000;
    font-family: 'Roboto', sans-serif;
}
#page_login .bg-image{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    opacity: .9;
    background-image: url("../../images/panel-login-bg.jpg");
    filter: blur(3px);
    -webkit-filter: blur(3px);
}
#page_login .container{
    z-index: 2;
    width: 500px;
    border-radius:15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 2px 2px 12px 0px rgba(51,51,51,1);
    -moz-box-shadow: 2px 2px 12px 0px rgba(51,51,51,1);
    box-shadow: 2px 2px 12px 0px rgba(51,51,51,1);
    transition: .3s;
}
#page_login .container .login-baslik{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 700;
}
#page_login .container .form-grup{
    width: 100%;
    margin-bottom: 10px;
}
#page_login .container .form-grup:nth-last-child(){
    margin-bottom: 0px;
}
#page_login .container .form-grup input[type=text],
#page_login .container .form-grup input[type=email],
#page_login .container .form-grup input[type=password]{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border:1px solid #e6e6e6;
    border-radius: 10px;
    transition: .3s;
}
#page_login .container .form-grup input[type=text]:focus,
#page_login .container .form-grup input[type=email]:focus,
#page_login .container .form-grup input[type=password]:focus{
    border:1px solid #f1c225;
}
::placeholder{
    color: #999;
    font-size: 12px;
}
#page_login .container .form-grup input[type=checkbox]{
    color: #999;
    font-size: 12px;
}
#page_login .container .form-grup button{
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background: #a50c65;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: .4s;
}
#page_login .container .form-grup button:hover{
    background: #b31973;
    color: #fff;
}