﻿
:root {
    --trp-green: #2E7D32;
    --trp-light-green: #4CAF50;
    --trp-dark: #1b5e20;
}

body {
    margin: 0;
    background-color: #f4f7f4;
    font-family: 'Poppins', sans-serif;
}

.trp-loader-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-img {
    width: 120px;
    height: 120px;
    z-index: 2;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.1));
}

.pulse-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 4px solid var(--trp-light-green);
    border-radius: 50%;
    animation: pulse 2s infinite ease-out;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.loading-text-area {
    text-align: center;
    color: var(--trp-dark);
}

.trp-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trp-subtitle {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px;
}

.progress-container {
    width: 200px;
    height: 4px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--trp-green);
    width: 30%;
    border-radius: 10px;
    animation: progress-move 2.5s infinite ease-in-out;
}

@keyframes progress-move {
    0% {
        transform: translateX(-100%);
        width: 10%;
    }

    50% {
        width: 40%;
    }

    100% {
        transform: translateX(250%);
        width: 20%;
    }
}

.amenity-item-hover {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out !important;
}

    .amenity-item-hover:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08) !important;
    }

@media (max-width: 959px) {
    .mud-popover,
    .mud-dialog {
        pointer-events: auto !important;
    }
}


.captcha-input input {
    text-align: center !important;
}

