/* Installer styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f7f8fa;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    font-family: "Play", sans-serif;
}

.title {
    color: #1a2b49;
}

.content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-top: 30px;
}

.input-box {
    margin-bottom: 15px;
}

.input-checkbox {
    display: flex;

    label {
        margin-bottom: 0;
    }
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="checkbox"] {
    margin-right: 10px;
}

.submit-container {
    margin-top: 30px;
    text-align: center;
}

input[type="submit"] {
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

input[type="submit"]:hover {
    background-color: #2980b9;
}

.error {
    color: #e74c3c;
    font-weight: bold;
    display: none;
}

.hidden {
    display: none;
}

.installation-successful {
    display: block;
    text-align: center;
    font-size: 18px;
    color: #2ecc71;
    margin: 20px 0;
    padding: 15px;
    background-color: #f1f9f1;
    border-radius: 4px;
    text-decoration: none;
}

.install-loading {
    width: 32px;
    margin-right: 10px;
    vertical-align: middle;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 14px;
}
