
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f3f4f6, #e0e7ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url("images/image.png");
    background-repeat:no-repeat;
    background-size:cover;
}

h1 {
    color: #4f46e5;
    margin-bottom: 30px;
    font-size: 2em;
}

form {
    background-color: white;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

button, a {
    background-color: #4f46e5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, a:hover {
    background-color: #4338ca;
}

#log, #OUTPUT {
    margin-top: 10px;
    font-size: 14px;
    color: #111827;
    background-color: #dbeafe;
    padding: 10px;
    border-radius: 8px;
    font-style: italic;
    width: 100%;
}

select {
    appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
}

@media (max-width: 400px) {
    form, select, button, a {
        width: 90%;
    }
}
