12345678910111213141516171819202122232425262728293031323334353637 |
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 100vh;
- background-color: #f5f5f5;
- }
- .role-info {
- font-size: 18px;
- color: #333;
- margin-bottom: 20px;
- }
- .form {
- width: 80%;
- }
- .input {
- width: 100%;
- margin-bottom: 20px;
- padding: 10px;
- border: 1px solid #ccc;
- border-radius: 4px;
- }
- .login-button {
- width: 100%;
- padding: 10px;
- background-color: #007AFF;
- color: white;
- text-align: center;
- border: none;
- border-radius: 4px;
- font-size: 16px;
- }
|