body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
}

.login-container {
    width: 500px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    text-align: center;
}
.login-right {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-label {
    width: 400px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-align: left;
}
.login-title {
    margin: 0 0 30px 0;
    font-size: 2em;
    color: #333;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-input {
    width: 80%;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

.login-input:focus {
    border-color: #007BFF;
}

.login-btn {
    width: 80%;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #0056b3;
}
.login-error {
    width: 270px;
    color: red;
    font-size: 12px;
    margin-top: 5px;
    min-height: 14px; 
    text-align: left;
}
.login-logo {
    width: 120px; 
    margin-bottom: 15px;
}
.login-left {
    text-align: center;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.form-group input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.login-update-btn {
    display:none;
    background: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

/* toast message  */

#toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ff4d4d; 
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-family: Arial,sans-serif;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
}

.toast-show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}