body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* Light gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

.auth-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.auth-logo img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%; /* If the logo is circular */
    object-fit: cover;
}

.auth-card h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: calc(100% - 40px); /* Adjusting for padding */
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #a8dadc;
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
    font-size: 14px;
}

.forgot-password a {
    color: #48cae4;
    text-decoration: none;
}

.auth-button {
    background-color: #48cae4; /* Blue from the image */
    color: white;
    border: none;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.auth-button:hover {
    background-color: #3bb2c4;
}

.auth-footer {
    margin-top: 30px;
    font-size: 15px;
    color: #555;
}

.auth-footer a {
    color: #48cae4;
    text-decoration: none;
    font-weight: bold;
}

