body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    color: #e2e8f0;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}
.subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 30px;
    font-style: italic;
}
.info-box {
    background: #1e293b;
    border-left: 4px solid #3b82f6;
    padding: 16px 20px;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.info-box strong {
    color: #60a5fa;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}
.info-box p {
    margin: 5px 0;
    color: #cbd5e1;
}
.info-box code {
    background: #0f172a;
    padding: 2px 6px;
    border-radius: 6px;
    color: #e7a7c7;
    font-size: 0.9em;
}

.wrap-auth {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.wrap-auth label {
	color: #94a3b8;
	font-size: 0.9em;
}

.wrap-auth input {
	padding: 12px 16px;
	background: #1e293b;
	border: 2px solid #334155;
	border-radius: 12px;
	color: #f1f5f9;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
}

.btn-auth {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	padding: 12px;
	border: none;
	border-radius: 40px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	margin-top: 5px;
}

.form-group {
    margin-bottom: 25px;
}
label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}
textarea {
    width: 100%;
    padding: 14px 18px;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #f1f5f9;
    font-family: inherit;
    box-sizing: border-box;
    min-height: 120px;
    resize: vertical;
}
textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: #2d3a4f;
}
button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
}
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -5px rgba(59, 130, 246, 0.7);
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.response-area {
    margin-top: 40px;
    background: #1e293b;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #334155;
}
.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #334155;
}
.response-header span:first-child {
    font-weight: bold;
    color: #94a3b8;
    font-size: 1.2em;
}
.status-badge {
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.9em;
    font-weight: 600;
    background: #2d3a4f;
    color: #94a3b8;
}
.status-badge.success {
    background: #059669;
    color: white;
}
.status-badge.error {
    background: #b91c1c;
    color: white;
}
.status-badge.loading {
    background: #d97706;
    color: white;
}
.response-content {
    white-space: pre-wrap;
    word-wrap: break-word;
    min-height: 150px;
    max-height: 500px;
    overflow-y: auto;
    font-family: 'Fira Code', 'Consolas', monospace;
    padding: 20px;
    background: #0f172a;
    border-radius: 16px;
    border: 1px solid #334155;
    line-height: 1.6;
    color: #e2e8f0;
}
.response-content.loading {
    color: #94a3b8;
    font-style: italic;
}
.response-content.error {
    color: #f87171;
    border-color: #7f1d1d;
}
.footer {
    text-align: left;
    margin-top: 20px;
    color: #44546b;
    font-size: 0.8em;
}
.model-info {
    text-align: center;
    margin: 10px 0 20px 0;
    padding: 8px;
    background: #1e293b;
    border-radius: 40px;
    border: 1px solid #3b82f6;
    color: #94a3b8;
    font-size: 0.9em;
}
.model-info span {
    color: #60a5fa;
    font-weight: bold;
}