* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 1;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
    position: relative;
    margin: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
}

.alert {
    color: red; /* Set the text color to red */
    text-decoration: none; /* Fix incorrect text-decoration */
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}


.input-container {
    position: relative;
    margin-bottom: 18px;
}

.input-container input {
    width: 100%;
    padding: 14px 14px 14px 40px;  /* Added padding for icon */
    border: 1px solid #c3bfbf;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.1s;
}

.input-container input:focus {
    border-color: #0984e3;
    outline: none;
    box-shadow: 0 0 5px rgba(9, 132, 227, 0.3);
}

.input-container svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #aaa;
}

button {
    width: 100%;
    background: #0984e3;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0652dd;
}

.logo-login {
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #f5f5f5;
  -webkit-box-shadow: 0 0 0 4px #e8e6e6;
  box-shadow: 0 0 0 4px #e8e6e6;
  border-radius: 50%;
  margin: -45px auto 20px;
}

.error-box {
    background-color: #d0bebf;  /* Light red background */
    color: #721c24;            /* Dark red text */
    padding: 15px;
    border: 1px solid #f3929c;
    border-radius: 5px;
    margin-bottom: 20px;
}

.error-box p {
    margin: 0;
}