.rpp-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}

.rpp-container h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.rpp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .rpp-form-grid {
        grid-template-columns: 1fr;
    }
}

.rpp-form-group {
    display: flex;
    flex-direction: column;
}

.rpp-container label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.rpp-container input[type="text"],
.rpp-container input[type="email"],
.rpp-container input[type="number"],
.rpp-container select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.rpp-container button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.rpp-container button:hover {
    background: #005177;
}

.rpp-container button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.rpp-message {
    margin-top: 15px;
    font-weight: bold;
}

/* Loader CSS */
.rpp-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.rankpredictor-heading{
    -webkit-text-fill-color: #0000;
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    font-size: 3em;
    font-weight: 800;
    padding-bottom: 5px;
    text-align: center;
    margin-bottom: 15px;
}
.txt-danger{
    font-size:17px;
    color:#dc3545;
    font-weight: 700;
}