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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #072E3E; /* new-bg-colour-1-dark */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.form-box {
    background-color: var(--component-bg-1);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Login heading logo + title alignment */
.form-box h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-logo {
    width: 32px;
    height: 32px;
}

.login-title-text {
    display: inline-block;
}

.login-footer-links {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #AEAEC9;
}

.login-footer-links a {
    color: #C8C8CD;
    text-decoration: none;
}

.login-footer-links a:hover {
    text-decoration: underline;
}