* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('https://life.havenlife.fr/assets/images/background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    position: relative;
}

.site-title {
    /* font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px; */
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 70px;
    text-transform: uppercase;
    color: rgb(0, 212, 255);
    text-shadow: rgba(0, 212, 255, 0.8) 0px 0px 8px;
    margin-bottom: 1rem;
}

.site-title .period {
    color: #FFF;
  }

.login-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

h2 {
    color: white;
    margin-bottom: 20px;
}

.steam-btn {
    display: inline-block;
    background: #1b2838;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s;
}

.steam-btn:hover {
    background: #66c0f4;
}

