/* style.css */

:root {
    --primary: #007bff;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #333;
    margin-top: 20px;
}

form {
    max-width: 100%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

fieldset {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
}

legend {
    padding: 0 10px;
    font-weight: bold;
    color: #333;
}

label {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    color: #666;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="file"],
.password,
select {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button[type="submit"],
.button {
    display: block;
    text-decoration: none;
    width: max-content;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

#logout {
    position: absolute;
    top: 1rem;
    right: 1rem;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

#logout:hover {
    filter: brightness(0.9);
}

.no-click {
    cursor: default;
}
