body, html {
    height: 100%;
    margin: 0;
}

body {
    background: url('../bgimage/bg-image.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.form-control {
    margin-bottom: 15px;
}

.btn-primary {
    width: 100%;
}

.register-link {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

.subtitle {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .login-container {
        padding: 20px;
    }

    .login-container h1 {
        font-size: 1.5rem;
    }
}
