

.a-main-container .form-title {
    font-size: 5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    line-height: 5rem;
    color: #1f191c;
}

.a-main-container h2 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1f191c;
    text-align: center;
}

.a-main-container .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.a-main-container .form-group label {
    font-size: 1.8rem;
    margin-right: 10px;
    color: #1f191c;
}

.a-main-container .form-group input {
    font-size: 1.6rem;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #1f191c;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.a-main-container .form-group input:focus {
    border-color: #afbbd3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.a-main-container .form-group .btn {
    font-size: 1.6rem;
    padding: 10px 20px;
    background-color: #58585a;
    color: #e7eaf1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.a-main-container .form-group .btn:hover {
    background-color: #302e2e;
}

.a-main-container .maps-container {
    display: grid;
    grid-template-columns: 1fr;
    width: 90%;
    gap: 20px;
    margin: 0 auto;
}

.a-main-container .map-container {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mapboxgl-canvas {
    width: 100%;
}

.map-legend {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    color: #1f191c;
}

.map-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: none;
    width: 100px;
    filter: invert(0.2);
    height: 100px;
}