body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom, #d32f2f, #ffffff);
    font-family: 'Jost', sans-serif;
}

.main {
    width: 350px;
    height: auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    box-sizing: border-box;
}

  .version-info {
      margin-top: 20px;
      color: black;
      /* White text color */
      text-align: center;
      font-size: 14px;
  }

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

img {
    width: 120px;
    height: auto;
}

input {
    width: 90%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fafafa;
}

button {
    width: 100%;
    padding: 12px 0;
    background: #d32f2f;
    color: #fff;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

button:hover {
    background: #b71c1c;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Flash message styling inside form */
.flash-container {
    margin-bottom: 20px;
    /* Adjust margin for spacing */
}

.flash {
    background: #d32f2f;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
    /* Hidden by default */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}