/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    margin: 5px 0;
}

.social-login {
    text-align: center;
    margin-bottom: 20px;
}

.social-login button {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #3b5998; /* Facebook blue */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.social-login button:hover {
    background-color: #2d4373; /* Darker Facebook blue */
}

.or {
    text-align: center;
    margin-bottom: 20px;
}

.or hr {
    width: 40%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.form-group input {
    width: 100%;
    max-width: 300px; /* Adjust the maximum width as needed */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.forgot-password {
    text-align: right;
    margin-bottom: 10px;
}

.forgot-password a {
    text-decoration: none;
    color: #666;
}

#login-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50; /* Green */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

#login-button:hover {
    background-color: #45a049; /* Darker green */
}

.sign-up {
    text-align: center;
}

.sign-up a {
    text-decoration: none;
    color: #007bff; /* Bootstrap blue */
}

.services-button {
    text-align: center;
    margin-bottom: 20px;
}

.services-button button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.services-button button:hover {
    background-color: #0056b3;
}