body, html {
    height: 100%;
    margin: 0;
    font-family: 'Rubik', sans-serif;
}
.bg100 {
    /* The image used */
    background-image: url('https://imagedelivery.net/_NpbBHlH2s97AJ0Uws6OLw/97424870-f877-4332-2d13-4e472fbcef00/big');

    /* Full height */
    height: 100%; 

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* Flexbox for centering */
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg {
    /* The image used */
    background-image: url('../images/background.jpeg');

    /* Full height */
    height: 100%; 

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* Flexbox for centering */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
  
}

.left-section {
    width: 55%; /* Increased width */
    background-image: url('../images/background2.jpeg');
    background-size: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.right-section {
    width: 45%; /* Decreased width */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
}

.logo {
   
}

.logo img {
    width: 150px;
}

h2 {
    margin-top: 0;
    font-size: 28px; /* Increased font size */
    font-weight: 500;
}

p {
    margin: 10px 0 20px;
    color: #6D6D6D; /* Lighter gray color */
    font-size: 16px;
}

p a {
    color: #007bff; /* Blue color */
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center elements horizontally */
}

.input-group {
    padding-top: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 30px; /* Increased margin */
    width: 100%;
    justify-content: center; /* Center input groups */
}

.input-group .icon {
    margin-right: 10px;
    color: #007bff; /* Blue color */
}

.input-group input {
    width: 300px; /* Increased width */
    padding: 10px;
    border: 2px solid #007bff; /* Thicker blue border */
    border-radius: 5px;
    background-color: #f1f1f1; /* Light gray background color */
    outline: none;
    font-size: 14px;
}

.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px; /* Added margin-top */
}

button {
    background-color: #007bff;
    color: white;
    padding: 12px 40px; /* Adjusted padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px; /* Increased font size */
}

button:hover {
    background-color: #0056b3;
}


























