body {
    background: url('../../assets/banners/banner-2.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

/* Black transparent overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    z-index: 1;
}

.log-in {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    z-index: 2; /* Ensure the form is above the overlay */
}

.log-in h4 {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.log-in h4 span {
    color: #FF4000;
}

.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.floating-label input {
    border: none;
    border-bottom: 2px solid #ced4da;
    width: 100%;
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.floating-label input:focus {
    border-bottom: 2px solid #FF4000;
    outline: none;
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    color: #ccc;
    transition: all 0.3s;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: #FF4000;
}

.icon {
    position: absolute;
    top: 45%;
    left: 0px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

button[type="submit"] {
    width: 100%;
    background-color: #FF4000;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #cb3503;
}

.text-danger {
    margin-top: 5px;
}
.icon svg{
    color: #FF4000;
}