*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('bg2.jpg');
    background-size: cover;
    background-position: center;
}
.content{
    background: transparent;
    width: 410px;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(24px);
    color: #fff;
    border-radius: 12px;
    padding: 30px 35px;
}
.content h2{
    font-size: 38px;
    font-weight: 700;
    text-align: center;
}
.input-box{
    position: relative;
    width: 100%;
    height: 55px;
    margin: 30px 0;
}
.input-box input{
    background: transparent;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}
.remember{
    display: flexbox;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    margin: -16px 10px 16px;
}
.remember label input{
    accent-color: #fff;
    margin-right: 4px;
}
.remember a{
    color: white;
}
.btn{
    display: inline-block;
    background: #fff;
    color: rgba(59, 59, 210, 0.696);
    width: 100%;
    border-radius: 30px;
    font-size: 16px;
    height: 45px;
    font-weight: 600;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1 );
    cursor: pointer;
    margin-bottom: 30px;
}
button{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}
.logo{
    font-size: 52px;
    font-weight: 500;
    animation: LeftSlide 1s ease forwards;
    transform: translateX(-230px);
    filter: blur(5px);
    opacity: 0;
    align-items: center;
    color: #fff;
    text-decoration: dashed;
    padding-left: 50px;
    
}
@keyframes LeftSlide{
    0%{
    transform: translateX(-230px);
    filter: blur(5px);
    opacity: 0;
    }
    100%{
    transform: translateX(0px);
    filter: blur(0px);
    opacity: 1;
    }
}
button{
    background: #515cd7;
    color: whitesmoke;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    border-radius: 30px;
    transition: .4s;
    height: 50px;
    width: 100px;
    font-size: 20px;
    
}
button:hover{
    background: transparent;
    border: 2px solid #ea0510;
    cursor: pointer;
}
.back{
    display: flexbox;
    margin-top: 550px;
}