.loading {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader {
    position: absolute;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #FF831E;
    border-right: 16px solid #FF831E;
    border-bottom: 16px solid #f3f3f3;
    border-left: 16px solid #FF831E;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: spin 2s linear infinite;
}

.loading-text {
    position: absolute;
    bottom: 20%;
    font-size: 18px;
    color: #FF831E;
    text-align: center;
}

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