body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #fff;
}

.form-group textarea {
    height: 100px;
}

.form-group button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

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

.error-messages {
    background-color: #ffdddd;
    color: #d8000c;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d8000c;
    border-radius: 5px;
}

.success-message {
    background-color: #ddffdd;
    color: #4caf50;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #4caf50;
    border-radius: 5px;
}


.account-info {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.account-info p {
    margin: 10px 0;
    font-size: 16px;
}

.logout-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6666;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #cc5555;
}

input, select, textarea, button {
    font-size: 16px;
}
