/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%;
    background-color: #f4f4f4;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header Section with Background */
.header {
    background:
        radial-gradient(circle at 30% 20%, rgba(232, 91, 143, 0.35), transparent 55%),
        linear-gradient(120deg, #0b0f17, #111827);
    height: 150px;
    position: relative;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.logo {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 180px; /* Adjust this value to make the logo bigger */
    height: auto; /* Maintain aspect ratio */
    padding: 15px; /* Keep the padding consistent */
    z-index: 2;
}

/* Login Form */
.login-form {
    padding: 30px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-group label {
    width: 100px;
    font-size: 14px;
    color: #333;
}

.form-group input {
    flex: 1;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    outline: none;
}

.form-group input:focus {
    border-bottom: 1px solid #57b846;
}

.form-links {
    text-align: right;
    margin-bottom: 20px;
}

.form-links a {
    font-size: 12px;
    color: #57b846;
    text-decoration: none;
}

.form-links a:hover {
    text-decoration: underline;
}

a.forgot-password {
    color: #4C1F4C; /* Dark purple, matching button */
    text-decoration: none; /* Removes underline */
    transition: color 0.3s ease; /* Smooth transition on hover */
}

a.forgot-password:hover {
    color: #3A173A; /* Slightly darker purple on hover */
}


/* Login Button */
.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #e85b8f;
    transition: background-color 0.3s ease;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #c93a70;
}

.info-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.5;
}
