body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.tabs {
    display: flex;
}

/* Add styles for the tab buttons */
/* Add styles for the tab buttons */
.tablink {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f2f2f2;
    border: none;
}

/* Style the selected tab */
.tablink.selected {
    background-color: #333; /* Change to your preferred color */
    color: #fff; /* Text color in selected state */
}

.tabcontent {
    display: none;
    padding: 20px;
}

form {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 20px;
}

/* Add more CSS styling as needed */
/* Add styles for the form group */
.form-group {
    margin-bottom: 10px;
}
/* Add styles for the logo */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 100%;
}
