dev1/src/components/UserProfile.css

68 lines
1.2 KiB
CSS

.user-profile-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
max-width: 600px;
margin: 0 auto;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #f9f9f9;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.user-profile-container h2 {
font-size: 24px;
color: #333;
margin-bottom: 20px;
}
.user-profile-form {
width: 100%;
}
.user-profile-form label {
display: block;
font-size: 16px;
font-weight: bold;
color: #555;
margin-bottom: 5px;
}
.user-profile-form input,
.user-profile-form select {
width: 100%;
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 15px;
box-sizing: border-box;
}
.user-profile-form button {
padding: 10px 20px;
font-size: 16px;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.user-profile-form button:hover {
background-color: #0056b3;
}
.error-message {
color: #d9534f;
font-size: 14px;
margin-bottom: 15px;
}
.success-message {
color: #5cb85c;
font-size: 14px;
margin-bottom: 15px;
}