<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>bankforeclosurelistings.org</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
    <style>
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .page-container {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            padding: 0;
        }
        
        .image-section {
        	background-image: linear-gradient(#3ccfd4 50%, #007149 50%);
	        background-size: 100% 200%;
	        background-position: top;
            background-color: #3ccfd4;
           
            background-size: cover;
            background-position: center;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0;
        }
        
        .form-section {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        .form-container {
            width: 100%;
            max-width: 400px;
        }
        
        .form-control {
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            border: 1px solid #ced4da;
            margin-bottom: 1rem;
        }
        
        .btn-success {
            background-color: #055593;
            border-color: #055593;
            font-size: 1.25rem;
            font-weight: bold;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            width: 100%;
        }
        
        .forgot-password-link {
            color: #D7090A;
            text-decoration: none;
            font-weight: bold;
            text-align: center;
            display: block;
            margin-top: 1rem;
        }

        .welcome-text h1{
            font-size: 2rem;
            font-weight: bold;
            color: #4C4C4C;
        }
        .welcome-text .blue{
        	color: #010476;
        	font-size: 2rem;
        }
    </style>
</head>
<body>

<div class="container-fluid page-container">
    <div class="row w-100 h-100">
        <div class="col-auto image-section">
            <img src="images/login-wall-image.png" class="house-and-sign">
        </div>

        <div class="col form-section">
            <div class="form-container text-center text-md-start">
                <div class="welcome-text mb-4">
                    <h1>
                    	Welcome to Foreclosure1.com
                    </h1>
                </div>
                <p class="text-muted mb-4">
                    Please enter your username and password to access the member area
                </p>
                <form action="login_send.php" method="post" name="member_login" id="broker_login">
                    <div class="mb-3">
                        <input type="text" name="username" class="form-control" id="username" placeholder="Username">
                    </div>
                    <div class="mb-3">
                        <input type="password" name="password" class="form-control" id="password" placeholder="Password">
                    </div>
                    <button type="submit" class="btn btn-success">Log in</button>
                    <a href="password_recovery.php" class="forgot-password-link">I forgot my password</a>
                </form>
            </div>
        </div>
    </div>
</div>

</body>
</html>