* {
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: #ffffff;
    width: 100%;
    max-width: 850px;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0d6efd;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #212529;
}

form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
}

form label {
    font-weight: bold;
    margin-bottom: 4px;
    display: block;
    color: #495057;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 14px;
}

form textarea {
    resize: vertical;
    min-height: 90px;
}

.full {
    grid-column: span 2;
}

button {
    grid-column: span 2;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #0d6efd;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background: #0b5ed7;
}

/* Responsive */
@media (max-width: 768px) {
    form {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }
}
