/* Import Tailwind CSS */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

/* Custom Styles */
body {
    font-family: 'Nunito', sans-serif;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 1.5rem;
    color: #1a202c;
}

nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #4a5568;
    transition: color 0.2s;
}

nav a:hover {
    color: #2b6cb0;
}

section#profil-perusahaan {
    background-color: #f7fafc;
}

section#profil-perusahaan h2 {
    color: #2d3748;
}

section#profil-perusahaan p {
    color: #4a5568;
    margin-bottom: 1rem;
}

section#pendaftaran {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section#pendaftaran h2 {
    color: #2d3748;
}

form {
    background-color: #edf2f7;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
    color: #4a5568;
    font-weight: bold;
}

form input[type="text"],
form input[type="file"] {
    border: 1px solid #cbd5e0;
    padding: 0.75rem;
    border-radius: 0.375rem;
    width: 100%;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

form input[type="text"]:focus,
form input[type="file"]:focus {
    border-color: #3182ce;
    outline: none;
}

form button {
    background-color: #3182ce;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

form button:hover {
    background-color: #2b6cb0;
}

form button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.text-center {
    text-align: center;
}

.text-green-600 {
    color: #48bb78;
}

.text-red-600 {
    color: #e53e3e;
}

.mt-4 {
    margin-top: 1rem;
}

