/* General body styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #007bff; /* Fit Coach blue */
    color: #333;
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 20px 40px; /* Larger padding for bigger navbar */
    color: white;
    height: 100px; /* Larger height for navbar */
}

.navbar .logo img {
    height: 80px; /* Increased logo size */
}

.navbar .links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 20px; /* Larger font size */
    font-weight: bold;
}

.navbar .links a:hover {
    text-decoration: underline;
}

/* Card styling */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Full height minus navbar */
}

.card {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: center;
}

.card h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #666;
}

/* Form styling */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

/* Error/success message styling */
.message {
    font-size: 16px;
    color: green;
    margin-top: 20px;
}

.message.error {
    color: red;
}
