/* This page uses the login-actives-component styles */
/* See: frontend/website/components/login-actives-component/login-actives-component.css */

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#loginActivesComponent {
    flex: 1;
}

/* Footer */
footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 1000;
}

.btn-back {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
    display: inline-block;
}

.btn-back:hover {
    color: #FFC700;
}