﻿.main {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f6f9;
    font-family: 'Arial', sans-serif;
    padding: 10px;
}

/* Parking Info Box */
.parking-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: auto;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

    /* Subscription count */
    .parking-info p {
        font-size: 16px;
        margin-bottom: 5px;
    }

/* Form Container */
.parking-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Terms and Conditions */
.terms-container {
    background: #eef2f7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* License Plate Input */
.form-group {
    text-align: center;
}

input[type="text"] {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px;
    width: 100%;
    text-align: center;
}

/* Error Messages */
.warning-text, .invalid-feedback {
    color: red;
    font-weight: bold;
    display: none;
    text-align: center;
}

/* Pricing Box */
.pricing-section {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Pricing Amount */
.pricing-amount {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

/* Large Button */
.btn-primary {
    background-color: #1d3557;
    color: white;
    font-size: 22px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

    .btn-primary:hover {
        background-color: #457b9d;
        transform: translateY(-3px);
    }

/* Checkbox Styling */
.form-check {
    text-align: center;
    margin-bottom: 10px;
}

.form-check-input {
    transform: scale(1.4);
    margin-right: 8px;
}

.is-invalid {
    border: 2px solid red !important;
    background-color: #ffecec !important;
}

.is-valid {
    border: 2px solid #28a745 !important;
    background-color: #e6f9e6 !important;
}
