body {
    font-family: 'Roboto Mono', monospace;
    background-color: #2e2e2e;
    color: #d4d4d4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.terminal {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    overflow: hidden;
    background-color: #1e1e1e;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: #333;
}

.terminal-header-button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.terminal-header-button.close {
    background-color: #ff5f56;
}

.terminal-header-button.minimize {
    background-color: #ffbd2e;
}

.terminal-header-button.maximize {
    background-color: #27c93f;
}

.terminal-title {
    margin-left: 10px;
    font-weight: bold;
    color: #d4d4d4;
}

.terminal-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    position: relative;
}

.output {
    background-color: #1e1e1e;
    padding: 10px;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    font-size: 0.9em;
    word-wrap: break-word;
    border-radius: 5px;
}

#input {
    padding: 10px;
    width: 100%;
    border: none;
    outline: none;
    background-color: #333;
    color: #d4d4d4;
    font-size: 0.9em;
    border-radius: 5px;
}

input::placeholder {
    color: #555;
}

textarea, input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    outline: none;
    background-color: #333;
    color: #d4d4d4;
    font-size: 0.9em;
    border-radius: 5px;
}

button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    outline: none;
    background-color: #555;
    color: #fff;
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 5px;
}

button:hover {
    background-color: #444;
}

.inquiries {
    text-align: center;
    padding: 5px;
    margin-top: 5px;
    background-color: #1e1e1e;
    color: #999;
    font-size: 12px;
}

.inquiries a {
    color: #999;
    text-decoration: none;
}

.inquiries a:hover {
    text-decoration: underline;
}

.footer {
    text-align: right;
    padding: 10px;
    width: 100%;
    background-color: #2e2e2e;
    color: #d4d4d4;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    right: 0;
}

.footer p {
    margin: 0;
}
