body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:#1c2d3f url('/static/Pngtreecartoon.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}
.hero {
    background: #1c2d3f url('/static/bg-pattern.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.content {
    max-width: 700px;
    margin: auto;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="url"] {
    width: 100%;
    max-width: 500px;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #ffcc00;
    color: #333;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #e6b800;
}

.status {
    margin-top: 15px;
    font-weight: bold;
    color: #fff;
}

.results {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.results h3 {
    margin-top: 0;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

li {
    background: #f0f0f0;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    font-size: 15px;
}

.preview-box {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    margin-top: 10px;
}

.flash-message {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}
.flash-success {
    background-color: #d4edda;
    color: #155724;
}
.flash-error {
    background-color: #f8d7da;
    color: #721c24;
}
