/* 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: url('../img/bg-01.png') center/cover no-repeat;
    height: 150px;
    position: relative;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black overlay */
    z-index: 1;
}

.logo {
    position: absolute;
    top: 5px;
    right: 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: #5a2d74; /* Dark Purple (like the puzzle piece) */
    transition: background-color 0.3s ease;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #4a235a;
}

.info-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.5;
}
