html,
body {
    background: url('images/bohs_courtyard_preview.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arial', sans-serif;
    height: 100%;
    /* Make the body take full height of the viewport */
    margin: 0;
    display: flex;
    flex-direction: column;
}

.page-header {
    background-color: rgb(254, 252, 255, 0.7);
}

/* Basic Styling */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Full viewport height */
}

.form-container .login_wrapper {
    width: 100%;
    max-width: 400px;
    /* Form area won't be too small */
    background-color: rgb(254, 252, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group .form-control {
    height: 45px;
    padding-left: 15px;
}

.input-group .input-group-text {
    width: 45px;
    justify-content: center;
    background-color: #e9ecef;
}

button {
    height: 45px;
    font-size: 1rem;
    font-weight: bold;
}

.text-danger {
    margin-top: -10px;
    margin-bottom: 5px;
    font-style: italic;
}

/* Forget password and Register link styling */
.forget_password_new_registraion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.forget_password_new_registraion a {
    font-size: 0.9rem;
    color: #007bff;
    display: flex;
    align-items: center;
}

.forget_password_new_registraion .forget_pass_style::before {
    content: url('https://image.shutterstock.com/image-vector/forgot-password-icon-vector-illustration-260nw-1604461206.jpg');
    margin-right: 8px;
    height: 15px;
}

.forget_password_new_registraion .registration-link::before {
    content: url('https://image.shutterstock.com/image-vector/user-register-icon-260nw-1533067467.jpg');
    margin-right: 8px;
    height: 15px;
}

/* Responsive Styling */
@media (max-width: 767px) {
    .form-container .login_wrapper {
        padding: 20px;
        margin: 0 5px;
    }

    .form-container h3 {
        font-size: 1.6rem;
    }

    .input-group .form-control {
        font-size: 1rem;
    }

    button {
        font-size: 1.1rem;
    }

    .forget_password_new_registraion a {
        font-size: 0.8rem;
    }
}


footer {
    margin-top: auto;
    /* Pushes the footer to the bottom */
    background-color: rgba(0, 0, 0, 0.7);
    /* Optional: for background color */
    color: white;
    /* Text color */
    padding: 20px 0;
}