.form-container {
    border: 2px solid #007BFF;
    padding: 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.form-container h2 {
    margin-top: 0;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.description {
    color: rgb(92, 40, 40);
}

.google-signin-button {
    display: inline-block;
    margin: 10px 0;
}

.google-signin-button img {
    width: 191px;
    height: 46px;
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-name {
    font-size: 1.2em;
    color: #333;
}

.logout-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

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

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.error-message {
    margin-top: 20px;
    font-size: 18px;
}
.error-details {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.no-underline {
    text-decoration: none;
    color: inherit;
}