/**
 * @author Manoj Mathangadeera
 * @company AIVOTANDRA
 * @link https://aivotandra.com
 * @file style.css
 * @project updating-page
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
}

.message {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 24px;
}

.progress-container {
    width: 100%;
    height: 14px;
    background-color: #1a1a1a;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid #fff100;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #fff100;
    border-radius: 7px;
    transition: width 1s linear;
}

.progress-label {
    margin-top: 10px;
    font-size: 13px;
    color: #999999;
}
