/* 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: linear-gradient(135deg, #007bff, #00d2ff);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

/* Keyframes for gradient animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* Wrapper for the login form */
.wrapper {
    width: 400px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

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

/* 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: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    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 8px rgba(0, 123, 255, 0.25);
    outline: none;
}

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

/* Submit button */
.btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Submit button hover effect */
.btn-primary:hover {
    background-color: #0069d9;
    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;
    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;
    }
}
