body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.login-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 450px;
    text-align: center;
    position: relative;
}

.login-header {
    background-color: #ccc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.login-header h2 {
    margin: 0;
}

.login-form {
    padding-top: 90px;
}

.form-group.position-relative {
    margin-bottom: 20px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
}

.floating-label {
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 10px;
    transition: all 0.2s ease-in-out;
    color: #aaa;
}

.form-control:focus ~ .floating-label,
.form-control:not(:placeholder-shown) ~ .floating-label {
    top: -20px;
    left: 5px;
    font-size: 12px;
    color: #fff;
}

.text-white {
    color: #fff;
}

.btn-light {
    background-color: #fff;
    color: #000;
}

.btn-light:hover {
    background-color: #ccc;
    color: #000;
}

.logo-container {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer {
    position: fixed;
    bottom: 10px;
    right: 40px;
    color: gray;
}
