center {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #eaf4f8, #f8fcff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin: 0;
}

.login-container {
    display: flex;
	flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    width: 100%;
    align-items: center;
}

.left-section {
    flex: 1;
    padding: 5px;
    text-align: center;
}

.right-section {
    flex: 1;
    padding: 20px;
}

.right-section h1 {
    margin-bottom: 5px;
	text-align: center;
	font-size: 28px;
}

.right-section h5 {
    margin-bottom: 10px;
	text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background: #ff6b6b;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #e64c4c;
}

#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px 20px;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#popup img {
    margin-bottom: 10px;
}

#popup h3 {
    color: #ff6b6b;
    margin-bottom: 10px;
    font-size: 20px;
}

#popup p {
    font-size: 14px;
    color: #333;
}


#warnMobile {
    color: red;
    font-size: 12px;
}

.info-box {
    background-color: #dfffe0;
    padding: 10px;
    border-radius: 5px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px; /* space for the eye icon */
}

.password-wrapper img {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}