*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    color:#fff;
}

.container{
    text-align:center;
    padding:50px;
    width:90%;
    max-width:700px;
    border-radius:25px;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,.08);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
    animation:fadeIn 1.5s;
}

.logo{
    width:220px;
    margin-bottom:40px;
    transition:.5s;
}

.logo:hover{
    transform:scale(1.08) rotate(2deg);
}

h1{
    font-size:3rem;
    margin-bottom:20px;
    letter-spacing:2px;
}

p{
    font-size:1.2rem;
    opacity:.9;
}

.line{
    width:120px;
    height:5px;
    margin:35px auto;
    border-radius:20px;
    animation:pulse 2s infinite;
}

.loader{
    margin:40px auto 0;
    width:60px;
    height:60px;
    border-radius:50%;
    border:5px solid rgba(255,255,255,.2);
    border-top-color:#fff;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{transform:rotate(360deg);}
}

@keyframes pulse{
    50%{
        transform:scaleX(1.3);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}