
    body {
        font-family: Arial, sans-serif;
        background-image:url('../images/B.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.9; /* Adjust the opacity value as needed */
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
    }
    .container {
        background-color: #2e9bef33; /* 0.8 for 80% opacity, adjust as needed */
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 300px;
    }
    
    
    form {
        display: flex;
        flex-direction: column;
    }
    label {
        margin-bottom: 8px;
        font-weight: bold;
        font-size: 16px;
        color:white;
    }
    .heading {
        margin-bottom: 20px;
        font-size: 24px;
        color: white;
        font-weight: bold;
        text-align: center;
    }
    input[type="text"],
    input[type="email"],
    input[type="password"] {
        padding: 10px;
        margin-bottom: 0px;
        border: 1px solid #cccccc;
        border-radius: 4px;
        font-size: 16px;
        outline: none;
        transition: border-color 0.3s;
        width: 100%;
        box-sizing: border-box; /* Ensure padding doesn't increase element width */
        background-color: transparent;
        color: white;
        font-weight: bold;
    }
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus {
        border-color: #007bff;
    }
    .error-message {
        color: #ff041d; /* Bootstrap's danger color */
        margin-bottom: 10px;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }
    input[type="submit"] {
        background-color: #007bff;
        color: #ffffff;
        border: none;
        padding: 12px;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 100%;
    }
    input[type="submit"]:hover {
        background-color: #0056b3;
    }

    #forget{
        color: white;
        text-decoration: none;
    }