/* styles.css */

.bg {
    background: url('image-mobile.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.form-container {
    border: 1px solid #f4ecec;
    padding: 15px;
    margin-bottom: 7vh;
    font-family: Candara;
    border-radius: 5px;
    background: #e5ebe7;
    opacity: 0.9;
    width: 300%;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Rest of your styles */


.form-container label {
    color: #212529;
    /* Dark text color */
}

.form-container input[type="text"],
.form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #1d1b1b;
    /* Light border color */
    border-radius: 5px;
    background-color: #23dea9;
    /* White background */
    color: #030303;
    /* Text color */
}

.form-container .btn-primary {
    background-color: #007bff;
    /* Primary button color */
    color: #fff;
    /* Text color */
    border: none;
}

.form-container .btn-primary:hover {
    background-color: #0056b3;
    /* Darker color on hover */
}



bank-footer {
    margin-top: 20px;
    color: #0f020a;
    /* Text color for the footer */
}