/*
Theme Name: Vulnix Fire
Theme URI: https://example.com/vulnix-fire
Author: Vulnix
Author URI: https://example.com
Description: A minimalistic Hello World WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vulnix-fire
*/

/* Base Styles (mimicking Tailwind base) */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f3f4f6; /* bg-gray-100 */
    color: #1f2937; /* text-gray-800 */
}

h1 {
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 700; /* font-bold */
    margin-bottom: 1.5rem; /* mb-6 */
    text-align: center;
    color: #111827; /* text-gray-900 */
}

/* Service Trade Components */
.servicetrade-widget-login {
    background-color: #ffffff; /* bg-white */
    padding: 2rem; /* p-8 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    width: 100%;
    max-width: 28rem; /* max-w-md */
    margin-left: auto;
    margin-right: auto;
}

.servicetrade-inputcontainer {
    margin-bottom: 1rem; /* mb-4 */
}

.servicetrade-inputcontainer label {
    display: block;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: #374151; /* text-gray-700 */
    margin-bottom: 0.25rem; /* mb-1 */
}

.servicetrade-inputcontainer input {
    width: 100%;
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    border-width: 1px;
    border-color: #d1d5db; /* border-gray-300 */
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.servicetrade-inputcontainer input:focus {
    outline: none;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #3b82f6; /* blue-500 */
    --tw-ring-offset-shadow: 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 0 1px #3b82f6; /* border-blue-500 equivalent */
    border-color: #3b82f6;
}

.servicetrade-form-actions {
    margin-top: 1.5rem; /* mt-6 */
}

.servicetrade-form-actions button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem; /* py-2 px-4 */
    border-width: 1px;
    border-color: transparent;
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: #ffffff;
    background-color: #2563eb; /* bg-blue-600 */
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 200ms;
    cursor: pointer;
}

.servicetrade-form-actions button:hover {
    background-color: #1d4ed8; /* hover:bg-blue-700 */
}

.servicetrade-form-actions button:focus {
    outline: none;
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: #3b82f6; /* blue-500 */
    --tw-ring-offset-shadow: 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow);
}

.servicetrade-form-links {
    margin-top: 1rem; /* mt-4 */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem; /* text-sm */
    padding-left: 0;
}

.servicetrade-form-links li {
    list-style: none;
    margin-bottom: 0.5rem;
}

.servicetrade-form-links a {
    color: #2563eb; /* text-blue-600 */
    text-decoration: none;
    cursor: pointer;
}

.servicetrade-form-links a:hover {
    color: #3b82f6; /* hover:text-blue-500 */
    text-decoration: underline;
}

.servicetrade-success-container {
    color: #059669; /* text-green-600 */
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.servicetrade-error-container {
    color: #dc2626; /* text-red-600 */
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.servicetrade-success-container:empty,
.servicetrade-error-container:empty {
    display: none;
}
