/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 700px; 
    transform: translateY(-80px);
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px; /* Added padding to give some space inside the card */
    background-color: #fff; /* Ensure the card has a white background */
}

.card-title {
    font-size: 24px;
    color: #007bff;
    text-align: center; /* Center the card title */
    margin-bottom: 20px; /* Add space below the title */
}

.form-control {
    height: 45px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 15px; /* Add space between form controls */
}

.btn-block {
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #007bff; /* Add background color to the button */
    color: #fff; /* Make the button text white */
    border: none; /* Remove the button border */
    cursor: pointer; /* Change cursor to pointer on hover */
}

.btn-block:hover {
    background-color: #0056b3; /* Darken the button color on hover */
}

.flash-message {
    margin-bottom: 15px;
    color: #ff0000; /* Red color for flash messages */
    text-align: center; /* Center align flash messages */
}
