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

body{

    font-family:'Hammersmith One',sans-serif;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background-image:url(https://raw.githubusercontent.com/magicfred92/infinity/refs/heads/main/ChainImage.png);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;

}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

}

.container{

    position:relative;
    z-index:2;

    width:100%;
    max-width:700px;

    padding:30px;

}

.logo{
    text-align:center;
    margin-bottom:35px;
}

.logo img{
    width:300px;      /* environ 1.5x plus grand */
    max-width:80%;
    display:block;
    margin:auto;
}
.content{

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.15);

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

    border-radius:20px;

    padding:60px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

h1{

    font-family:'Hammersmith One',serif;

    font-size:64px;

    color:white;

    margin-bottom:20px;

    font-weight:600;

}

.subtitle{

    color:white;

    font-size:20px;

    line-height:1.8;

    margin-bottom:45px;

    opacity:.95;

}

form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

input{

    height:60px;

    border-radius:50px;

    border:none;

    padding:0 25px;

    font-size:18px;

    outline:none;

}

button{

    height:60px;

    border:none;

    border-radius:50px;

    background:#d7b56d;

    color:white;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

button:hover{

    transform:translateY(-2px);

    background:#c39b47;

}

button:disabled{

    opacity:.5;

    cursor:not-allowed;

}

#message{

    margin-top:30px;

    color:white;

    font-size:18px;

    min-height:24px;

}

@media(max-width:768px){

.content{

padding:35px;

}

h1{

font-size:44px;

}

.subtitle{

font-size:17px;

}

}