51 lines
1.2 KiB
CSS
51 lines
1.2 KiB
CSS
/* SignUp.css */
|
|
|
|
.signup-container {
|
|
max-width: 400px; /* Limit the width of the entire form container */
|
|
margin: 50px auto; /* Center the form container */
|
|
padding: 20px;
|
|
background-color: #f9f9f9;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
}
|
|
|
|
.signup-container h2 {
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.signup-container input {
|
|
width: 90%; /* Limit the width of each input field */
|
|
padding: 10px;
|
|
margin: 10px auto; /* Center-align inputs within the form container */
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.signup-container button {
|
|
width: 90%; /* Keep button width consistent with inputs */
|
|
padding: 12px;
|
|
margin-top: 20px;
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
text-align: center;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.signup-container button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
.signup-container p {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
margin-top: 15px;
|
|
}
|
|
|