/* General body styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('https://Zenatfin.com/logs/images/color.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Wrapper for the login form */
.wrapper {
    width: 400px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.3); /* 30% opaque */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 1;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Bank logo */
.wrapper .logo {
    margin-bottom: 0px;
}

.wrapper .logo img {
    max-width: 130px;
}

/* Form heading */
h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #007bff;
}

/* Form description */
p {
    color: #666;
    margin-bottom: 20px;
}

/* Input fields */
.form-group input[type="text"],
.form-group input[type="password"] {
    width: 90%;
    padding: 14px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


/* Input fields hover and focus effects */
.form-group input[type="text"]:hover,
.form-group input[type="password"]:hover,
.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
    outline: none;
}


/* Placeholder styling */
.form-group input::placeholder {
    color: #999;
    opacity: 1; /* Firefox */
}

/* Submit button */
.btnn-primary {
    width: 40%;
    padding: 30px;
    font-size: 8em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btnn-primary:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Additional features */
.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 20px;
    font-size: 0.875em;
    color: #333;
}

.remember-me input {
    margin-right: 5px;
}

/* Links for forgot password and other actions */
.wrapper .actions {
    margin-top: 10px;
    font-size: 0.875em;
}

.wrapper .actions a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wrapper .actions a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Footer with bank info */
.wrapper .footer {
    margin-top: 20px;
    font-size: 0.75em;
    color: #999;
}

/* Responsive design for smaller screens */
@media (max-width: 480px) {
    .wrapper {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
}
