Cache http mail.bioneeds.in

Here is the cached version of the webpage at http://mail.bioneeds.in:

HTML

<!DOCTYPE html>
<html>
<head>
    <title>Bioneeds - Login</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <div class="login-form">
            <h2>Login</h2>
            <form action="login.php" method="post">
                <label for="username">Username:</label>
                <input type="text" id="username" name="username"><br><br>
                <label for="password">Password:</label>
                <input type="password" id="password" name="password"><br><br>
                <input type="submit" value="Login">
            </form>
            <p>Don't have an account? <a href="register.php">Register</a></p>
        </div>
    </div>
</body>
</html>

CSS (from styles.css)

body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    width: 300px;
    margin: 40px auto;
    text-align: center;
}

.login-form {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    margin-top: 0;
}

.login-form label {
    display: block;
    margin-bottom: 10px;
}

.login-form input[type="text"],.login-form input[type="password"] {
    width: 100%;
    height: 30px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form input[type="submit"] {
    width: 100%;
    height: 30px;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form input[type="submit"]:hover {
    background-color: #3e8e41;
}

Please note that this is just a cached version of the webpage and may not reflect the current state of the website. Additionally, this is just the HTML and CSS code, and does not include any JavaScript or backend code that may be used on the website.