﻿/* styles.css */

/* General container styling */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

/* Form styling */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        color: #fff;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #007bff;
            outline: none;
        }

/* Button styling */
.submit-button {
    background-color: #ff6a00;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

    .submit-button:hover {
        background-color: #ffd800;
    }

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .submit-button {
        padding: 12px;
    }
}

@media (min-width: 600px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 40px;
    }
}



/* Media query for small devices (mobile) */
@media (max-width: 600px) {
    .balance-container {
        max-width: 200px; /* Make the balance container much smaller on mobile */
        padding: 8px; /* Reduce padding further */
    }

        .balance-container div {
            font-size: 1.0em; /* Smaller font size to match smaller container */
        }
}
