@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}
  
.login-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(100% 100% at 50% 10%, rgb(54, 39, 82) 0%, rgb(16, 16, 49) 70%);
}
  
.login-container a {
    padding: 12px 24px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 0 10px rgba(17, 20, 45, 0.6),
        0 0 20px rgba(17, 20, 45, 0.4),
        0 0 30px rgba(23, 25, 50, 0.2),
        0 0 40px rgba(23, 25, 50, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: "Nunito", Arial, sans-serif;
    transition: transform 0.25s ease; 
}
  
.login-container a:hover {
    transform: scale(1.025);
}