.maindiv {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

/* Reset some basics */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f6fa;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maindiv {
    background: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    width: 350px;
}

h1 {
    margin-bottom: 20px;
    color: #2f3640;
}

input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #dcdde1;
    font-size: 14px;
}

button {
    padding: 10px 20px;
    border: none;
    background: #4cd137;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #44bd32;
}

#status, #progressText {
    margin-top: 10px;
    font-size: 14px;
    color: #353b48;
}

progress {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

