input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

button:hover:not(:disabled) {
    background-color: #45a049;
}

.secondary-btn {
    background-color: #8B5CF6;
}

.secondary-btn:hover:not(:disabled) {
    background-color: #7C3AED;
}

.options {
    max-width: 400px;
    margin: 0 auto;
}

.host-input {
    margin-bottom: 20px;
}
