body {
    background: linear-gradient(to right, #74ebd5, #9face6);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}


.login-page.trial {
    height: 120vh !important;
}

.login-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-left: 1rem;
    margin-right: 1rem;
}

h2 {
    margin-bottom: 0.5rem;
    color: #333;
}

.subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 0px !important;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
    font-size: 1rem;
    margin-bottom: 1rem;
}

input:focus {
    border-color: #6c63ff;
    outline: none;
}

.btn-primary {
    background-color: #6c63ff;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #574fd6;
}

.footer-text {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}

.forgot-password {
  text-align: right;
  margin-top: 0.25rem;
}

.forgot-password a {
  font-size: 0.85rem;
  color: #6c63ff;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}