body
{
    padding: 100px;
}

.submit-area
{
    margin-top: 150px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px 5px lightskyblue;
    padding: 40px;
}
#transaction-area
{
    display: none;
    flex-wrap: wrap;
}

.deposit
{
    background-color: slateblue;
}
.withdraw
{
    background-color: lightsalmon;
}
.balance
{
    background-color: orange;
}
.status
{
    color: white;
    margin: 10px 20px;
    padding: 20px;
    border-radius: 10px;
    justify-content: center;
}
#logout-btn
{
    display: flex;
    justify-content: center;
    margin: 100px;
    
}

.btn {
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-success {
    background: linear-gradient(45deg, #28a745, #218838);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(45deg, #218838, #28a745);
    transform: scale(1.05);
}

.btn-danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(45deg, #c82333, #dc3545);
    transform: scale(1.05);
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.status {
    transition: background-color 0.3s, transform 0.3s;
}

.status:hover {
    background-color:green;
    transform: scale(1.02);
}

body {
    background: url('./images/1317.jpg') no-repeat center center fixed;
    background-size:cover;
    color: #333;
    padding: 10px;
    font-family: 'Arial', sans-serif;
}

/* Webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

h1 {
    font-size: 4rem;
    color: yellow;
    text-shadow: 
        1px 1px 0 #000, 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000;
    font-weight: bold;
    text-transform: uppercase;
}

#login-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1.text {
    font-size: 6rem;
    margin: 0;
    position: relative; 
    top: 40px; /* Adjusts vertical position */
    left: 0; /* Center horizontally */
}


#login-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('your-background-image.jpg') no-repeat center center;
    background-size: cover;
}

.submit-area {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h4 {
    margin-bottom: 20px;
    color: #333; /* Darker text color for contrast */
}
#login-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('your-background-image.jpg') no-repeat center center;
    background-size: cover;
}

.submit-area {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 350px;
}
.submit-area input {
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 16px;
}

.submit-area input:focus {
    border-color: #007bff; /* Blue color for focus state */
    outline: none;
}

.submit-area button {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    color: #fff;
    background-color: #28a745; /* Green color */
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-area button:hover {
    background-color: #218838; /* Darker green color on hover */
}
@media (max-width: 768px) {
    .submit-area {
        width: 90%;
        padding: 20px;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.submit-area {
    animation: fadeIn 0.7s ease-out;
}
#login-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('your-background-image.jpg') no-repeat center center;
    background-size: cover;
    width: 100%; /* Ensure it takes full width */
    position: absolute; /* Ensure it remains centered */
    top: 0;
    left: 0;
    z-index: 1; /* Ensure it stays on top */
}

/* For the container that holds the deposit and withdraw forms */
.submit-area {
    margin-top: 50px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* For the forms within the rows */
.row .col-md-6 {
    display: flex;
    justify-content: center;
}

#transaction-area {
    display: none;
    padding: 20px;
}

.deposit, .withdraw, .balance {
    margin-top: 20px;
}

.deposit, .withdraw {
    min-width: 250px; /* Adjust as needed */
    max-width: 300px; /* Adjust as needed */
    background-color:skyblue,yellow;
}

h4 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

input.form-control {
    width: 100%;
    margin-bottom: 15px;
}

button.btn-success {
    width: 100%;
}
/* Loan Calculator Container */
#loan-calculator {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 10px auto;
}

/* Loan Calculator Heading */
#loan-calculator h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

/* Loan Calculator Inputs */
#loan-calculator input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
}

/* Loan Calculator Button */
#loan-calculator button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#loan-calculator button:hover {
    background-color: #218838;
}

/* Loan Calculator Result */
#loan-result {
    margin-top: 20px;
    text-align: center;
}

#loan-result p {
    margin: 5px 0;
    font-size: 18px;
    color: #007bff;
}
