* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
}

* {
    box-sizing: border-box;
}

.bg-img {
    /* The image used */
    background-image: url(./login3.webp);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: 100%;
    /* Control the height of the image */
}


label b{
    color: white;
}
    /* Add styles to the form container */
    .container {
         position: absolute; 
        right: 0;
        margin-top: 15%;
        max-width: 500px;
        padding: 16px;
        background-color:black;
       margin-right: 30%;
    }
    .bg-img .container h2 {
        text-align: center;
        color: white;
    }
    .back-to-home {
        margin-left: 2%;
        margin-top: 10px; /* Adjust spacing from the content */
      }
      
      .back-to-home a {
         display: inline-block; 
        padding: 10px 20px;
        background-color: grey; /* Button background color */
        color: #fff; /* Button text color */
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease; /* Smooth transition on hover */
      }
      
      .back-to-home a:hover {
        background-color: #0056b3; /* Button background color on hover */
      }
      
    /* Full-width input fields */
    input[type=text],
    input[type=tel] {
        width: 100%;
        padding: 15px;
        margin: 5px 0 22px 0;
        border: none;
        background: #f1f1f1;
        /* font-size: 13px; */
    }

    input[type=text]:focus,
    input[type=tel]:focus {
        background-color: #ddd;
        outline: none;
    }

    /* Style for the input */
    input[type="tel"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        /* font-size: 16px; */
        box-sizing: border-box;
        /* Ensures padding and border are included in the width */
    }

    /* Style for the input when focused */
    input[type="tel"]:focus {
        outline: none;
        /* Example color change when focused */
    }

    /* Set a style for the submit button */
    .btn {
        background-color: grey;
        color: white;
        padding: 16px 20px;
        border: none;
        cursor: pointer;
        width: 100%;
        opacity: 0.9;
        font-size: 15px;
    }

    .btn:hover {
        opacity: 1;
        background-color: #0056b3;
    }