/* Set full-page background image */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-size: cover;
    min-height: 100vh;
}

/* Center the login section */
.login-open-wrapper {
    max-width: 400px;
    margin: 80px auto 0 auto;
    padding: 0 20px;
    text-align: center;
    background: transparent; /* No box */
    box-shadow: none;
    border-radius: 0;
}

/* Title */
.login-open-wrapper h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Form Styling */
.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Submit Button */
button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #6a0dad;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #4f0684;
}

/* Footer Text */
.form-footer {
    margin-top: 16px;
    font-size: 14px;
   
}

.form-footer a {
    color: #6a0dad;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}
