* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg__img {
    background:
        linear-gradient(to bottom right, rgba(4, 148, 215, 0.652), rgba(0, 0, 0, 0.507)),
        url('/image/background.jpg') no-repeat center center;
    /* background:
        linear-gradient(to bottom right, rgba(4, 215, 145, 0.652), rgba(0, 0, 0, 0.548)),
        no-repeat center center; */
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-image {
    width: 160px;
    max-width: 300px;
    height: auto;
}

.login-form-container {
    background: #121212;
    width: 400px;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
}

.input-group {
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    background-color: #f6f6f6;
    padding: 10px;
    border-radius: 5px;
}

.input-field:focus {
    border-color: #3a7bd5;
}


.button-container {
    margin-top: 20px;
}

.login-button {
    background: #000000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.login-button:hover {
    background: #000000;
}


.create-account,
.forgot-password {
    font-size: 14px;
    text-align: center;
    color: #ffffff;
}

.create-account a,
.forgot-password a {
    color: #08e791;
    text-align: center;
    text-decoration: none;
}

.create-account a:hover,
.forgot-password a:hover {
    color: #2e5c8a;
    text-align: center;
}

.login-title {
    color: rgb(255, 255, 255);
    font-size: 25px;
    text-align: center;
}



































