.rdash-container {

    max-width: 1100px;

    margin: auto;

    padding: 80px 20px;

    text-align: center;

}

.rdash-container h2 {

    font-size: 54px;

    margin-bottom: 15px;

    color: #4b4dd8;

}

.rdash-container p {

    font-size: 18px;

    color: #666;

    margin-bottom: 40px;

}

.rdash-search {

    display: flex;

    justify-content: center;

    border: 2px solid #4b4dd8;

    border-radius: 18px;

    overflow: hidden;

    max-width: 900px;

    margin: auto;

}

.rdash-search input {

    flex: 1;

    padding: 25px;

    font-size: 22px;

    border: none;

    outline: none;

}

.rdash-search button {

    width: 260px;

    background: #4b4dd8;

    color: white;

    border: none;

    cursor: pointer;

    font-size: 22px;

}

.rdash-search button:hover {

    opacity: .9;

}

.rdash-price {

    display: flex;

    justify-content: space-around;

    margin-top: 60px;

    flex-wrap: wrap;

    gap: 20px;

}

.rdash-price div {

    text-align: center;

}

.rdash-price h3 {

    font-size: 42px;

    margin: 0;

}

.rdash-price span {

    font-size: 22px;

    font-weight: bold;

}

.rdash-loading {

    margin-top: 30px;

    font-size: 20px;

}

.rdash-success {

    margin-top: 30px;

    background: #e8fff0;

    padding: 20px;

    border-radius: 10px;

    color: green;

    font-size: 22px;

}

.rdash-error {

    margin-top: 30px;

    background: #fff0f0;

    padding: 20px;

    border-radius: 10px;

    color: red;

    font-size: 22px;

}

@media(max-width:768px) {

    .rdash-search {

        flex-direction: column;

    }

    .rdash-search button {

        width: 100%;

        height: 70px;

    }

    .rdash-container h2 {

        font-size: 36px;

    }

}

.rdash-register {

    display: inline-block;

    margin-top: 25px;

    background: #4B4DD8;

    color: white;

    padding: 15px 30px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 18px;

}

.rdash-register:hover {

    opacity: .9;

}