@charset "UTF-8";

body {
  background-image: linear-gradient(180deg, var(--bs-secondary-bg), var(--bs-body-bg) 100px, var(--bs-body-bg));
}

.container {
  max-width: 1080px;
}

.form-signin {
  max-width: 380px;
  padding: 1rem;
}

.hero {
	position: relative;
    background: url('../assets/img/bg_art.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Black color with 60% opacity */
    z-index: 1;
}