*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{

    min-height:100vh;

    background:url("../images/McNROE-BG.PNG");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.overlay{

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.25);

    padding:30px;
}

.login-card{

    width:480px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:20px;

    padding:50px;

    text-align:center;

    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.logo{

    width:150px;
    margin-bottom:25px;
}

h1{

    color:#ffffff;
    font-size:36px;
    font-weight:600;
    margin-bottom:15px;
}

.subtitle{

    color:#ffffff;
    font-size:20px;
    font-weight:500;
    margin-bottom:15px;
}

.description{

    color:#f4f4f4;
    line-height:1.7;
    margin-bottom:35px;
}

.btn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:50px;

    background:#ff4d4d;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    transition:.3s;
}

.btn:hover{

    background:#d63031;

    transform:translateY(-2px);
}

.footer{

    margin-top:35px;

    color:#ffffff;

    font-size:13px;
}

@media(max-width:600px){

.login-card{

    width:100%;
    padding:30px;
}

h1{

    font-size:28px;
}

.subtitle{

    font-size:18px;
}

}