.appBarColor {
    color: red;
  }
  body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f7f7f7;
}

.container {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.login-box, .security-tips {
    width: 45%;
}

.login-box input, .login-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-box button {
    width: 100%;
    background-color: #005255;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.security-tips ul {
    list-style-type: none;
}

.security-tips li::before {
    content: '○';
    margin-right: 10px;
}

.input-card {
    width: 300px; /* Adjust width as needed */
    margin: 50px auto; /* Center the card horizontally */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .input-card h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .input-card input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box; 
  }
  
  .input-card button {
    width: 100%;
    padding: 10px;
    background-color: #005255; /* Green */
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .input-card button:hover {
    background-color: #004042; /* Darker green on hover */
  }
