body {
    font-family: Arial, sans-serif;
    background-color: #111827;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Prevent horizontal scroll bar */
    height: 100vh;
}

header {
    background-color: #0F1E33;
    color: rgb(255, 255, 255);
    padding: 1rem;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 2rem;
    margin-left: 2rem;
    width: 70px;
    height: 70px;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    margin-top: 5rem; /* Adjusted to make room for the fixed header */
}

.container {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adds space between the buttons */
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #818cf8;
}

.google-signin {
    margin-top: 20px;
    text-align: center;
}

.g-signin2 {
    display: flex;
    justify-content: center;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
}

#response-message {
    margin-top: 20px;
    font-weight: bold;
}