body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7f5;
    color: #26332b;
}

.container {
    text-align: center;
    max-width: 600px;
    margin: 150px auto;
    padding: 40px;
}

.icon {
    font-size: 55px;
}

h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    color: #68756d;
}

.loading {
    height: 10px;
    background: #dce5df;
    border-radius: 10px;
    margin: 35px 0 20px;
    overflow: hidden;
}

.bar {
    height: 100%;
    width: 65%;
    background: #4caf70;
    border-radius: 10px;
    animation: loading 2s infinite alternate;
}

.status {
    font-size: 17px;
}

.small {
    margin-top: 40px;
    color: #89958d;
    font-size: 14px;
}

@keyframes loading {
    from { width: 20%; }
    to { width: 85%; }
}


