/**
 
SeAT login page layout with frosted glass effect*/@media all {
  html, body {
      height: auto;}

    .login-page, .register.body {
        color: rgb(212, 175, 55);
        background-image: url(https://web.ccpgamescdn.com/aws/eveonline/sso/background.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    .login-box, .register-box {
        width: 360px;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        background: rgba(45, 42, 42, 0.5); /* More transparent background */
        backdrop-filter: blur(8px); /* This creates the frosted glass effect */
        -webkit-backdrop-filter: blur(8px); /* For Safari support */
        transform: translate(-50%, -50%);
        border: 1px solid rgba(255, 255, 255, 0.18); /* Subtle border */
        border-radius: 16px; /* Reduced border radius for modern look */
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
    }

    .login-logo, .register-logo {
        font-size: 35px;
        text-align: center;
        margin-bottom: 25px;
        font-weight: 300;
        content: url(https://images.evetech.net/corporations/1634775132/logo?size=128);
        margin-top: 50px;
    }

    .login-logo::before, .register-logo::before {
        display: block;
        width: 128px;
        height:128px;
        margin: 0 auto;
        border-radius: 50%;
        margin-bottom: 50px;
    }

    .login-box-body, .register-box-body {
        background: transparent;
        padding: 20px;
        border-top: 0;
        color: inherit;
    }
}
