*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Segoe UI, Arial, sans-serif;

    background:
    linear-gradient(
    135deg,
    #002c5f,
    #0B57D0);

    min-height:100vh;
    padding:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:auto;
}

.background-overlay{

    width:100%;

    padding:20px;
}

.container{

 max-width:900px;

    margin:auto;

    text-align:center;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    padding:25px 40px;
}

.logo{

    width:100%;

    max-width:350px;

    height:auto;

    margin-bottom:15px;
}

h1{

    color:white;

    font-size:42px;

    letter-spacing:1px;

    margin-bottom:10px;
}

.divider{

    width:120px;

    height:4px;

    background:white;

    margin:20px auto;
}

.message{

   color:white;

    font-size:16px;

    line-height:28px;
}

.loader{

    width:70px;

    height:70px;

    border-radius:50%;

    border:8px solid rgba(255,255,255,.25);

    border-top:8px solid #ffffff;

    margin:40px auto;

    animation:spin 1s linear infinite;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }
}

.contact-info{

    color:white;

    font-size:18px;

    line-height:35px;

    margin-top:20px;
}

.footer-text{

    margin-top:35px;

    color:white;

    opacity:.8;

    font-size:14px;
}

@media(max-width:768px){

    .container{
        padding:30px;
    }

    .logo{
        max-width:300px;
    }

    h1{
        font-size:32px;
    }

    .message{
        font-size:16px;
        line-height:28px;
    }

    .contact-info{
        font-size:15px;
    }
}