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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Container Styling */
.container {
    padding: 40px 30px;
    border: 2px solid #000;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Title and Subtitle */
.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #000;
}

.progress {
    width: 45%; /* Adjust this value to reflect actual progress */
    height: 100%;
    background-color: #000;
    transition: width 0.5s ease;
}

/* Status Message */
.status {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}
