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

html,
body {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: url("/public/images/bg-image.png") no-repeat center 
center fixed;
    background-size: cover;
}

.hero-section {
    text-align: center;
    color: white;
    padding: 20px;
    /* background: rgba(0, 0, 0, 0.6); */
    border-radius: 8px;
}

.logo {
    width: 500px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.btn-login {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #45a049;
}
